Push multiple elements to array September 17, 2022 by Tarik You can push multiple elements into an array in the following way var a = []; a.push(1, 2, 3); console.log(a);