Contact: aviboots(AT)netvision.net.il
41,578 questions
54,200 answers
573 users
var s = 'html php css javascript'; var s = s.split(' ').join('+'); document.write(s); /* run: html+php+css+javascript */
var s = 'html php css javascript'; var s = s.replace(/ /g, '+'); document.write(s); /* run: html+php+css+javascript */