'Hellloooo'.includes('o'); const pets =['cat', 'dog', 'bat']; pets.includes('dog'); pets.indludes('bird');
const square = (x) => x**2
const cube = (y) => y**3