Contact: aviboots(AT)netvision.net.il
39,917 questions
51,850 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 */