js add string to array code example

Example 1: javascript append to array

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

Example 2: javascript pushing to an array

some_array = ["John", "Sally"];
some_array.push("Mike");

console.log(some_array); //output will be =>
["John", "Sally", "Mike"]

Example 3: how to push string into array in javascript

var arr = ["Hi","Hello","Bonjour"];
arr.push("Hola");
console.log(arr);

Example 4: js add item to array

const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.push("Kiwi");

Example 5: add item to array javascript

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