How to find all Indexes of as specified word within a lengthy string?
let word = 'Testing JavaScript, JavaScript is the Best, JavaScript is Ultimate';
Find the Indexes of word "JavaScript" from the above string in JavaScript code? Actually, its my interview question.