Skip to content

Instantly share code, notes, and snippets.

View daegren's full-sized avatar

David Mills daegren

View GitHub Profile
@daegren
daegren / local-dev-env-setup.md
Created December 12, 2018 17:35
Resources to setup a local development environment
const greet = function(name) {
console.log("Hello, " + name + "!");
};
greet("Dave");
const sayHello = greet;
sayHello("Juan");