Skip to content

Instantly share code, notes, and snippets.

View bukolabisuga's full-sized avatar

Bukola Bisuga bukolabisuga

View GitHub Profile
@bukolabisuga
bukolabisuga / HelloWorld.js
Last active January 28, 2020 08:02
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();