How do I actually get the return from splitCamelCase?
-
-
const s = "TwoWords"; const splitString = s.splitCamelCase(); Console.print(splitString[0]);
You see in the docs that the
splitCamelCase
function doesn't take any parameters. -
@d-healey Oh, there we go!
Thanks, this is all pretty new to me (coding)! -
@VirtualVirgin said in How do I actually get the return from splitCamelCase?:
this is all pretty new to me
You're doing great :)