Why do variable in an inner function return nan when there is the same variable name at the inner function declared after log The Next CEO of Stack OverflowWhat is the naming convention in Python for variable and function names?How to execute a JavaScript function when I have its name as a stringWhat is a practical use for a closure in JavaScript?Javascript by reference vs. by valueWhy aren't ◎ܫ◎ and ☺ valid JavaScript variable names?What is the explanation for these bizarre JavaScript behaviours mentioned in the 'Wat' talk for CodeMash 2012?Is the recommendation to include CSS before JavaScript invalid?variable not writable in inner functionjavascript variable returning NaNFunction returns NaN when it shouldn't
Are there any unintended negative consequences to allowing PCs to gain multiple levels at once in a short milestone-XP game?
Bold, vivid family
In the bitcoin scripting language, how can I access other outputs of the transaction? Or how else can I limit how the coins may be spent?
Is it ever safe to open a suspicious html file (e.g. email attachment)?
Is micro rebar a better way to reinforce concrete than rebar?
Why do professional authors make "consistency" mistakes? And how to avoid them?
Why do remote companies require working in the US?
What benefits would be gained by using human laborers instead of drones in deep sea mining?
Plot of histogram similar to output from @risk
Multiple labels for a single equation
Why has the US not been more assertive in confronting Russia in recent years?
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
How did people program for Consoles with multiple CPUs?
Would a completely good Muggle be able to use a wand?
What connection does MS Office have to Netscape Navigator?
Is it professional to write unrelated content in an almost-empty email?
What does "Its cash flow is deeply negative" mean?
What happened in Rome, when the western empire "fell"?
Why does the UK parliament need a vote on the political declaration?
MessageLevel in QGIS3
Does it take more energy to get to Venus or to Mars?
Why do we use the plural of movies in this phrase "We went to the movies last night."?
Which tube will fit a -(700 x 25c) wheel?
To not tell, not take, and not want
Why do variable in an inner function return nan when there is the same variable name at the inner function declared after log
The Next CEO of Stack OverflowWhat is the naming convention in Python for variable and function names?How to execute a JavaScript function when I have its name as a stringWhat is a practical use for a closure in JavaScript?Javascript by reference vs. by valueWhy aren't ◎ܫ◎ and ☺ valid JavaScript variable names?What is the explanation for these bizarre JavaScript behaviours mentioned in the 'Wat' talk for CodeMash 2012?Is the recommendation to include CSS before JavaScript invalid?variable not writable in inner functionjavascript variable returning NaNFunction returns NaN when it shouldn't
What's happening here? I get a different result if I declare a variable after console.log
in the inner function
I understand that var has a functional scope and inner function can access the variable from their parent
function outer()
var a = 2;
function inner()
a++;
console.log(a) //log NaN
var a = 8
inner()
outer()
function outer()
var a = 2;
function inner()
a++;
console.log(a) //log 3
var b = 8
inner()
outer()
The log returns NaN
in the first example and log 3
in the second example
javascript function
add a comment |
What's happening here? I get a different result if I declare a variable after console.log
in the inner function
I understand that var has a functional scope and inner function can access the variable from their parent
function outer()
var a = 2;
function inner()
a++;
console.log(a) //log NaN
var a = 8
inner()
outer()
function outer()
var a = 2;
function inner()
a++;
console.log(a) //log 3
var b = 8
inner()
outer()
The log returns NaN
in the first example and log 3
in the second example
javascript function
add a comment |
What's happening here? I get a different result if I declare a variable after console.log
in the inner function
I understand that var has a functional scope and inner function can access the variable from their parent
function outer()
var a = 2;
function inner()
a++;
console.log(a) //log NaN
var a = 8
inner()
outer()
function outer()
var a = 2;
function inner()
a++;
console.log(a) //log 3
var b = 8
inner()
outer()
The log returns NaN
in the first example and log 3
in the second example
javascript function
What's happening here? I get a different result if I declare a variable after console.log
in the inner function
I understand that var has a functional scope and inner function can access the variable from their parent
function outer()
var a = 2;
function inner()
a++;
console.log(a) //log NaN
var a = 8
inner()
outer()
function outer()
var a = 2;
function inner()
a++;
console.log(a) //log 3
var b = 8
inner()
outer()
The log returns NaN
in the first example and log 3
in the second example
function outer()
var a = 2;
function inner()
a++;
console.log(a) //log NaN
var a = 8
inner()
outer()
function outer()
var a = 2;
function inner()
a++;
console.log(a) //log NaN
var a = 8
inner()
outer()
function outer()
var a = 2;
function inner()
a++;
console.log(a) //log 3
var b = 8
inner()
outer()
function outer()
var a = 2;
function inner()
a++;
console.log(a) //log 3
var b = 8
inner()
outer()
javascript function
javascript function
edited 33 mins ago
Nick Parsons
10.3k2926
10.3k2926
asked 42 mins ago
ClaudeClaude
426
426
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
This is due to hoisting
The declaration of a
in the inner function is hoisted to the top of the function, overriding the outer function's a
, so a
is undefined
undefined++
returns NaN
, hence your result.
Your code is equivalent to:
function outer()
var a=2;
function inner()
var a;
a++;
console.log(a); //log NaN
a = 8;
inner();
outer();
Rewriting your code in this way makes it easy to see what's going on.
add a comment |
Because var
is hoisted through the function, you're essentially running undefined++
which is NaN
. If you remove var a = 8
in inner
, the code works as expected:
function outer()
var a = 2;
function inner()
a++;
console.log(a);
inner();
outer();
add a comment |
var a=0;
function outer()
a=2;
function inner()
a=a+1;
console.log(a)
a = 8
inner()
outer()
3
How does this piece of code explains the issue? Can you provide an explanation of the code you have posted?
– Shidersz
26 mins ago
They can’t access the inner function value so we have to defined globally. After globally you can use A value anywhere in the code
– Darshit Shah
24 mins ago
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55428371%2fwhy-do-variable-in-an-inner-function-return-nan-when-there-is-the-same-variable%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is due to hoisting
The declaration of a
in the inner function is hoisted to the top of the function, overriding the outer function's a
, so a
is undefined
undefined++
returns NaN
, hence your result.
Your code is equivalent to:
function outer()
var a=2;
function inner()
var a;
a++;
console.log(a); //log NaN
a = 8;
inner();
outer();
Rewriting your code in this way makes it easy to see what's going on.
add a comment |
This is due to hoisting
The declaration of a
in the inner function is hoisted to the top of the function, overriding the outer function's a
, so a
is undefined
undefined++
returns NaN
, hence your result.
Your code is equivalent to:
function outer()
var a=2;
function inner()
var a;
a++;
console.log(a); //log NaN
a = 8;
inner();
outer();
Rewriting your code in this way makes it easy to see what's going on.
add a comment |
This is due to hoisting
The declaration of a
in the inner function is hoisted to the top of the function, overriding the outer function's a
, so a
is undefined
undefined++
returns NaN
, hence your result.
Your code is equivalent to:
function outer()
var a=2;
function inner()
var a;
a++;
console.log(a); //log NaN
a = 8;
inner();
outer();
Rewriting your code in this way makes it easy to see what's going on.
This is due to hoisting
The declaration of a
in the inner function is hoisted to the top of the function, overriding the outer function's a
, so a
is undefined
undefined++
returns NaN
, hence your result.
Your code is equivalent to:
function outer()
var a=2;
function inner()
var a;
a++;
console.log(a); //log NaN
a = 8;
inner();
outer();
Rewriting your code in this way makes it easy to see what's going on.
edited 23 mins ago
Shidersz
9,3112933
9,3112933
answered 36 mins ago
jrojro
562113
562113
add a comment |
add a comment |
Because var
is hoisted through the function, you're essentially running undefined++
which is NaN
. If you remove var a = 8
in inner
, the code works as expected:
function outer()
var a = 2;
function inner()
a++;
console.log(a);
inner();
outer();
add a comment |
Because var
is hoisted through the function, you're essentially running undefined++
which is NaN
. If you remove var a = 8
in inner
, the code works as expected:
function outer()
var a = 2;
function inner()
a++;
console.log(a);
inner();
outer();
add a comment |
Because var
is hoisted through the function, you're essentially running undefined++
which is NaN
. If you remove var a = 8
in inner
, the code works as expected:
function outer()
var a = 2;
function inner()
a++;
console.log(a);
inner();
outer();
Because var
is hoisted through the function, you're essentially running undefined++
which is NaN
. If you remove var a = 8
in inner
, the code works as expected:
function outer()
var a = 2;
function inner()
a++;
console.log(a);
inner();
outer();
function outer()
var a = 2;
function inner()
a++;
console.log(a);
inner();
outer();
function outer()
var a = 2;
function inner()
a++;
console.log(a);
inner();
outer();
answered 34 mins ago
Jack BashfordJack Bashford
13.8k31848
13.8k31848
add a comment |
add a comment |
var a=0;
function outer()
a=2;
function inner()
a=a+1;
console.log(a)
a = 8
inner()
outer()
3
How does this piece of code explains the issue? Can you provide an explanation of the code you have posted?
– Shidersz
26 mins ago
They can’t access the inner function value so we have to defined globally. After globally you can use A value anywhere in the code
– Darshit Shah
24 mins ago
add a comment |
var a=0;
function outer()
a=2;
function inner()
a=a+1;
console.log(a)
a = 8
inner()
outer()
3
How does this piece of code explains the issue? Can you provide an explanation of the code you have posted?
– Shidersz
26 mins ago
They can’t access the inner function value so we have to defined globally. After globally you can use A value anywhere in the code
– Darshit Shah
24 mins ago
add a comment |
var a=0;
function outer()
a=2;
function inner()
a=a+1;
console.log(a)
a = 8
inner()
outer()
var a=0;
function outer()
a=2;
function inner()
a=a+1;
console.log(a)
a = 8
inner()
outer()
answered 33 mins ago
Darshit ShahDarshit Shah
53
53
3
How does this piece of code explains the issue? Can you provide an explanation of the code you have posted?
– Shidersz
26 mins ago
They can’t access the inner function value so we have to defined globally. After globally you can use A value anywhere in the code
– Darshit Shah
24 mins ago
add a comment |
3
How does this piece of code explains the issue? Can you provide an explanation of the code you have posted?
– Shidersz
26 mins ago
They can’t access the inner function value so we have to defined globally. After globally you can use A value anywhere in the code
– Darshit Shah
24 mins ago
3
3
How does this piece of code explains the issue? Can you provide an explanation of the code you have posted?
– Shidersz
26 mins ago
How does this piece of code explains the issue? Can you provide an explanation of the code you have posted?
– Shidersz
26 mins ago
They can’t access the inner function value so we have to defined globally. After globally you can use A value anywhere in the code
– Darshit Shah
24 mins ago
They can’t access the inner function value so we have to defined globally. After globally you can use A value anywhere in the code
– Darshit Shah
24 mins ago
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55428371%2fwhy-do-variable-in-an-inner-function-return-nan-when-there-is-the-same-variable%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown