Skip to content

Instantly share code, notes, and snippets.

@topicus
Created December 14, 2014 00:06
Show Gist options
  • Save topicus/ce7e6d3a79d76feaa9f6 to your computer and use it in GitHub Desktop.
Save topicus/ce7e6d3a79d76feaa9f6 to your computer and use it in GitHub Desktop.
Function hoisting
console.log(hola());
function hola(){
return 'hola mundo';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment