Contact: aviboots(AT)netvision.net.il
38,767 questions
50,459 answers
573 users
s = "javascript"; document.write(s.indexOf('k') + "<br />"); document.write(s.indexOf('s') + "<br />"); if (s.indexOf('k') !== -1) { document.write("exist"); } else { document.write("not exist"); } /* run: -1 4 not exist */