//regular indexof let a = 'asbdais sbbdias isajdij'; a.indexOf('ias'); // with regex: let a = 'asbdais sbbdias isajdij'; a.search(/ias/g);