// search: it takes a substring as an argument and it returns the index of the first match. // string.search(substring) let string = 'I love JavaScript. If you do not love JavaScript what else can you love.' console.log(string.search('love')) // 2