arraypush js code example
Example 1: javascript pushing to an array
some_array = ["John", "Sally"];
some_array.push("Mike");
console.log(some_array);
["John", "Sally", "Mike"]
Example 2: js push array
array.push(element_to_push);
Example 3: javascript add element to array
const langages = ['Javascript', 'Ruby', 'Python'];
langages.push('Go');
const dart = 'Dart';
langages = [...langages, dart];
Example 4: array.push
var vegetables = ['Capsicum',' Carrot','Cucumber','Onion'];
vegetables.push('Okra');
Example 5: js add array items to array
var arrayA = [1, 2];
var arrayB = [3, 4];
var newArray = arrayA.concat(arrayB);