Skip to content

Instantly share code, notes, and snippets.

@PantherHawk
Created March 11, 2017 22:02
Show Gist options
  • Save PantherHawk/7b042ddb372d4b937c9e63bacc43a4a7 to your computer and use it in GitHub Desktop.
Save PantherHawk/7b042ddb372d4b937c9e63bacc43a4a7 to your computer and use it in GitHub Desktop.
function a() {
console.log('a');
}
function b() {
console.log('b');
}
function c() {
console.log('c');
}
a(); // -> a
b(); // -> b
c(); // -> c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment