특정 개체 없애기

홍석현·2022년 10월 3일
0

const arr = ['가', '라', '다', '라', '마', '라']

function me(two){
for (let i=0; i<two.length; i++){
if(two[i]==='라'){
two.splice(i,1);
}
}return two;
}

console.log(me(arr))

profile
Front-end to Full-stack

0개의 댓글