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