Contact: aviboots(AT)netvision.net.il
41,160 questions
53,652 answers
573 users
let s = "node.js java c c++ c# php python" s = s.replace(/\s+/g,'').trim(); console.log(s); /* run: node.jsjavacc++c#phppython */
let s = "node.js java c c++ c# php python" s = s.split(' ').join(''); console.log(s); /* run: node.jsjavacc++c#phppython */