Skip to content

Instantly share code, notes, and snippets.

@h3nr1ke
Last active December 18, 2018 13:21
Show Gist options
  • Save h3nr1ke/9d9c786938e1cd11c9ad66b3cc570a50 to your computer and use it in GitHub Desktop.
Save h3nr1ke/9d9c786938e1cd11c9ad66b3cc570a50 to your computer and use it in GitHub Desktop.
ECMA6 var example 0001
/**
*
*/
var _myVar = "Banana";
console.log(_myVar);
var _myFunction = function(){
 _myVar = "Apple";
 console.log("_myVar -> " + _myVar); 
};
_myFunction();
console.log(_myVar);
// END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment