Skip to content

Instantly share code, notes, and snippets.

@codeangler
Created May 21, 2016 03:17
Show Gist options
  • Save codeangler/312ce000f4d418107e7e367450d92004 to your computer and use it in GitHub Desktop.
Save codeangler/312ce000f4d418107e7e367450d92004 to your computer and use it in GitHub Desktop.
https://repl.it/mVA/165 created by codeangler
var car = "Honda Civic";
showCar();
// By making it a function declaration scope & hoisting are not an issue
function showCar(){
console.log(car);
}
Native Browser JavaScript
>>> Honda Civic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment