Answers for "add numbers from array nodejs"

4

adding numbers in an array javascript

console.log(
  [].reduce((a, b) => a + b)
)
Posted by: Guest on February-24-2021
-1

add numbers from array nodejs

//these are the values//
var values = [
	'1',
  	'2'
]
//makes a variable named total, adding together the values
var total = values[0] + values[1]

//prints out the variable named total
console.log(total);
Posted by: Guest on March-18-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language