Includes determines whether one string can be found in another string
string
(string): input stringsubstr
(string): candidate string to be searched forstart
(Number): index to begin search for string
(boolean): does the input string include the substring?
const result = strings.includes('This Lovely Life', 'Love');
console.log(result);
> true