How to find the position of the first occurrence of a substring in a string with TypeScript

1 Answer

0 votes
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
 
*/

 



answered Apr 21, 2025 by avibootz
...