Contact: aviboots(AT)netvision.net.il
39,954 questions
51,896 answers
573 users
var s = "javascript css php Html"; if (s.includes("php")) document.write("yes"); else document.write("no"); /* run: yes */
var s = "javascript css php Html"; if (s.indexOf("php") !== -1) document.write("yes"); else document.write("no"); /* run: yes */
var s = "javascript css php Html"; if (s.search("php")) document.write("yes"); else document.write("no"); /* run: yes */
var s = "javascript css php Html"; if (/php/.test(s)) document.write("yes"); else document.write("no"); /* run: yes */