Q. Simple, remove the spaces from the string, then return the resultant string.
//정규표현식 활용
function noSpace(x){
return x.replace(/ /g, "");
}
let x = '8 j 8 mBliB8g imjB8B8 jl B';
//split(), join() 활용
function noSpace(x) {
return x.split(" ").join("");
}