Skip to content

Latest commit

 

History

History

hello-world-without-strings

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

You need to create a function, helloWorld, that will return the String Hello, World! without actually using raw strings. This includes quotes, double quotes and template strings. You can, however, use the String constructor and any related functions.

You cannot use the following:

"Hello, World!"
'Hello, World!'
`Hello, World!`