Contact: aviboots(AT)netvision.net.il
41,604 questions
54,252 answers
573 users
const str = "I bought running shoes, but they started running alone, now we are both happy"; const substring = "running"; let position = str.indexOf(substring); console.log(position); /* run: 9 */