Last active
August 29, 2015 14:23
-
-
Save jondlm/21075c503f3ceee87ee6 to your computer and use it in GitHub Desktop.
Functions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ------------------------------------- | |
// Example 1 (function expression) | |
// | |
test(); // Won't work | |
var test = function () { | |
alert('Yolo'); | |
}; | |
// ------------------------------------- | |
// Example 2 (function declaraction) | |
// | |
test2(); // Does work! | |
function test2 () { | |
alert('Yolo'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment