Skip to content

Instantly share code, notes, and snippets.

@waltzaround
Created July 18, 2016 06:11
Show Gist options
  • Save waltzaround/c32aec0074cd6a8dddad30718925302e to your computer and use it in GitHub Desktop.
Save waltzaround/c32aec0074cd6a8dddad30718925302e to your computer and use it in GitHub Desktop.
class Foo { // LOL FOO
bar() {
console.log("Hello, is it me you're looking for");
}
}
class Derp { // LOL DERP
durr() {
console.log("I can see it in your eyes");
}
}
var fooInstance = new Foo();
fooInstance.bar();
var derpInstance = new Derp();
derpInstance.durr();
console.log("I can see it in your soul");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment