javascript array append element code example
Example 1: javascript append to array
var colors=["red","white"];
colors.push("blue");//append 'blue' to colors
Example 2: javscript append item from array
let foo = ['oop','plop','copo'];
foo.push("plop");
Example 3: how to append an element to an array in javascript
//Use push() method
//Syntax:
array_name.push(element);
//Example:
let fruits = ["Mango", "Apple"];
//We want to append "Orange" to the array so we will use push() method
fruits.push("Orange");
//There we go, we have successfully appended "Orange" to fruits array!