Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Although shadowing should never be used (or just to obfuscate) because it's confusing, I wanted to completely understand it. And I got this strange thing :

alert(parseInt('123'));//Here, I expected 123 but it's 'overshadowed'
function parseInt(){return 'overshadowed';}
alert(parseInt('123'));//Here it's 'overshadowed' too

Why the first alert output 'overshadowed' whereas the function is not modified yet?

P.S : I got inspired by Variable shadowing in JavaScript

share|improve this question

1 Answer

up vote 2 down vote accepted

In JavaScript, all declarations are implicitly placed at the beginning of the scope ("hoisted"), so it doesn't matter if the parseInt() definition was at the second, last, or first line.

share|improve this answer
2  
It's commonly referred to as "hoisting." adequatelygood.com/2010/2/JavaScript-Scoping-and-Hoisting – ajm Jun 5 '12 at 12:39
@ajm: yep, thanks for the tip, adding this to the answer. – Alexander Pavlov Jun 5 '12 at 12:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.