x
You solved the puzzle!
There's a new one coming soon 😉
July 15th, 2024
What's missing in this code?
const
snakeCase =
'coding_beauty_dev'
;
const
toCamel = snakeCase.
(
,
(_match, letter) => letter.
);
Type or select from these options
/_([a-z])/g
/(_[a-z])/g
/[_[a-z]]/g
toUpperCase()
toUpper()
capitalize()
replace
split
CHECK