How would you check if the word "pot" is in the word "potato"?
"pot".indexOf("potato") !== -1
"potato".includes("Pot")
"potato".includes("pot")
"potato".contains("pot");