ruju11235 / csp

Small programs using the JavaScript syntax. I'm just starting to learn :)
0 stars 1 forks source link

Get to know the list data structure ... #4

Closed kedarmhaswade closed 1 month ago

kedarmhaswade commented 1 month ago

List is a versatile and ubiquitous data structure. It represents a sequence. A list could be homogeneous or heterogeneous.

Consider a homogeneous list of numbers. Write a function that returns the sum all the elements of a given list.

kedarmhaswade commented 1 month ago

For extra credit, use the same function to sum all the numbers between 1 and 100 (inclusive).

kedarmhaswade commented 1 month ago

Cool!