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