creer tableau js code example
Example 1: javascript ajouter une donnée à une list
let liste = ["azerty"]
liste.push('hello')
console.log(liste) //["azerty",'hello']
Example 2: tableau javascript
var newLength = fruits.push('Orange');
// ["Apple", "Banana", "Orange"]