ajouter un element dans un tableau code example
Example 1: javascript add element to array
const langages = ['Javascript', 'Ruby', 'Python'];
langages.push('Go'); // => ['Javascript', 'Ruby', 'Python', 'Go']
const dart = 'Dart';
langages = [...langages, dart]; // => ['Javascript', 'Ruby', 'Python', 'Go', 'Dart']
Example 2: javascript ajouter une donnée à une list
let liste = ["azerty"]
liste.push('hello')
console.log(liste) //["azerty",'hello']