Skip to content

Instantly share code, notes, and snippets.

@bukolabisuga
Last active January 28, 2020 08:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bukolabisuga/ce01c727d7e2fc007931585161ed1f06 to your computer and use it in GitHub Desktop.
Save bukolabisuga/ce01c727d7e2fc007931585161ed1f06 to your computer and use it in GitHub Desktop.
A function that prints "Hello world!" without repeating any characters in the program
function sayHelloWorld() {
const hello = "He\154\x6c\x6f w\157rld!";
alert(hello);
// return hello;
}
sayHelloWorld();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment