Created
May 21, 2015 06:55
-
-
Save fuchao2012/db9d65a0b79ee6549bea to your computer and use it in GitHub Desktop.
This file contains 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
function fuchao(a){ | |
console.log(a); | |
var a=2; | |
function a(){}; | |
console.log(a); | |
} | |
fuchao(1); | |
//var and function predefinations | |
//can you tell the result? | |
//tips: function>arguments>gloabl>inside |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
global in line 11