ES6에서 더욱 다양한 string메소드가 추가되었다고 한다!
const email = 'example@email.com';
console.log(email.startsWith('ex')); //true
const email = 'example@email.com';
console.log(email.endsWith('com')); //true
const email = 'example@email.com';
console.log(email.includes('@email')); //true
str.repeat(count);
'#'.repeat(3); // '###'