push three elements of an array code example
Example 1: js push array
array.push(element_to_push);
Example 2: javascript ajouter une donnée à une list
let liste = ["azerty"]
liste.push('hello')
console.log(liste) //["azerty",'hello']
array.push(element_to_push);
let liste = ["azerty"]
liste.push('hello')
console.log(liste) //["azerty",'hello']