Contact: aviboots(AT)netvision.net.il
40,760 questions
53,134 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 */