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