Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
const str = "Node.js is a JavaScript runtime built on Google V8 JavaScript engine"; const index = str.search(/built/i) console.log(index); /* run: 32 */
const str = "Node.js is a JavaScript runtime BUILT on Google V8 JavaScript engine"; const index = str.search(/built/i) // i - modifier for search case-insensitive console.log(index); /* run: 32 */