which method would add a value to an end of an array? code example
Example 1: javascript array add
// example:
let yourArray = [1, 2, 3];
yourArray.push(4); // yourArray = [1, 2, 3, 4]
// syntax:
// <array-name>.push(<value-to-add>);
Example 2: how to make and add to an array in javascript
var arrayExample = [53,'Hello World!'];
console.log(arrayExample) //Output =>
[53,'Hello World!']
//You can also do this
arrayExample.push(true);
console.log(arrayExample); //Output =>
[53,'Hello World!',true];