add integer to array js code example

Example 1: js add to array

const myArray = ['hello', 'world'];

// add an element to the end of the array
myArray.push('foo'); // ['hello', 'world', 'foo']

// add an element to the front of the array
myArray.unshift('bar'); // ['bar', 'hello', 'world', 'foo']

// add an element at an index of your choice
// the first value is the index you want to add at
// the second value is how many you want to delete (0 in this case)
// the third value is the value you want to insert
myArray.splice(2, 0, 'there'); // ['bar', 'hello', 'there', 'world', 'foo']

Example 2: add val to array jquery

var fruits = ["Banana", "Orange", "Apple", "Mango"];

fruits.push("Kiwi");

Example 3: how to insert a value into an array javascript

var list = ["foo", "bar"];


list.push("baz");


["foo", "bar", "baz"] // result

Example 4: how to add to an array

var ar = ['one', 'two', 'three'];
ar[3] = 'four'; // add new element to ar

Tags:

Java Example