Contact: aviboots(AT)netvision.net.il
39,938 questions
51,875 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 */