May 18th, 2024
What's missing in this code?
insertSpace('CodingBeauty'); // Coding Beauty
insertSpace('BlackAndYellow'); // Black And Yellow
insertSpace("WeDon'tTalkAnymore"); // We Don't Talk Anymore
function insertSpace(str)
const regex = /
/g;
return str.replace(regex,
);
}
Type or select from these options