javascript add item to end of array code example

Example 1: javascript array add end

// example:
let yourArray = [1, 2, 3];
yourArray.push(4); // yourArray = [1, 2, 3, 4]

// syntax:
// <array-name>.push(<value-to-add>);

Example 2: javscript append item from array

let foo = ['oop','plop','copo'];
	foo.push("plop");

Example 3: javascript append array to end of array

const new_array = old_array.concat([value1[, value2[, ...[, valueN]]]])

Example 4: add item to array javascript

const arr1 = [1,2,3]
const newValue = 4
const newData = [...arr1, obj] // [1,2,3,4]