Returns a string in lowercase form with spaces removed.
function lowerCaseNoSpaces(str: string): string
// Example:
lowerCaseNoSpaces("Hello World") //=> "helloworld"
Returns a string in lowercase form with spaces removed.
function lowerCaseNoSpaces(str: string): string
// Example:
lowerCaseNoSpaces("Hello World") //=> "helloworld"