Skip to content

Instantly share code, notes, and snippets.

View byronmejia's full-sized avatar
🛒
🖨🖨🖨🖨🖨

Byron Mejia byronmejia

🛒
🖨🖨🖨🖨🖨
View GitHub Profile
@DavidHooper
DavidHooper / hello.js
Created November 17, 2016 07:48
JS Hello World
function sayHello(word, callback) {
callback(word);
}
sayHello('Hello', function(word) {
sayHello(word + ' World', function(word){
sayHello(word + '!', function(word) {
console.write(word);
});
});