Contact: aviboots(AT)netvision.net.il
41,230 questions
53,732 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 */