162. ES7(ES2016)

변지영·2022년 2월 15일
0

includes

'Hellloooo'.includes('o');
const pets =['cat', 'dog', 'bat'];
pets.includes('dog');
pets.indludes('bird');

exponential operator

const square = (x) => x**2

const cube = (y) => y**3

0개의 댓글