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

1 Answer

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

*/

 



answered Apr 21, 2025 by avibootz
edited Apr 21, 2025 by avibootz
...