Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
const str = "device width viewport"; const index = str.search(/width/i) console.log(index); /* run: 7 */
const str = "device WIDTH viewport"; const index = str.search(/width/i) // i - modifier for search case-insensitive console.log(index); /* run: 7 */