1. 프로그래머스
Lv0. 편지
const solution=(message)=> {
let answer = 0;
answer = message.length*2
return answer;
}
const solution = (message) => {
return message.split('').length * 2
}
Lv0. 모음 제거
const solution=(my_string)=> {
const editStr = my_string.replace(/[aeiou]/g, '')
return editStr
}
function solution(my_string) {
return Array.from(my_string).filter(t => !['a', 'e', 'i', 'o', 'u'].includes(t)).join('');
}
includes는 배열 메소드이자 문자열 메소드
/[aeiou]/gi