Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,847 questions

51,768 answers

573 users

How to push multiple values to an array in Node.js

2 Answers

0 votes
const arr = ['c', 'node.js', 'c++'];
 
arr.push('c#', 'php', 'go', 'python');
 
console.log(arr);
   
   
   
   
/*
run:
   
[ 'c', 'node.js', 'c++', 'c#', 'php', 'go', 'python' ]
   
*/

 



answered Jun 27, 2022 by avibootz
0 votes
let arr = ['c', 'node.js', 'c++'];
 
arr = [...arr, 'c#', 'php', 'go', 'python']; 
 
console.log(arr);
   
   
   
   
/*
run:
   
[ 'c', 'node.js', 'c++', 'c#', 'php', 'go', 'python' ]
   
*/

 



answered Jun 27, 2022 by avibootz

Related questions

1 answer 102 views
1 answer 151 views
151 views asked Mar 10, 2024 by avibootz
1 answer 134 views
4 answers 274 views
2 answers 141 views
...