Contact: aviboots(AT)netvision.net.il
42,038 questions
54,727 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 */