javascript append all to array code example

Example 1: javascript append to array

var colors=["red","white"];
colors.push("blue");//append 'blue' to colors

Example 2: add all elements in array javascript

console.log(
  [1, 2, 3, 4].reduce((a, b) => a + b, 0)
)
console.log(
  [].reduce((a, b) => a + b, 0)
)

Example 3: push another array to array typescript

var arrayA = [1, 2];
var arrayB = [3, 4];
var newArray = arrayA.concat(arrayB);

Example 4: adding all elements in an array javascript

values.reduce(function(a, b){return a+b;})

Tags:

Ruby Example