Confused for loop in react
up vote
1
down vote
favorite
componentDidMount() {
for (let i = 0; i < 3; i++) {
let i = 'not a number'
console.log(i) // output only one time
}
}
componentDidMount() {
let i = 5 // add one line...
for (let i = 0; i < 3; i++) {
let i = 'not a number'
console.log(i) // output three times
}
}
Please notice that output times, if run these loops in browser directly, both these codes will output three times, but in react, it outputs only one time in for loop.
reactjs loops for-loop
add a comment |
up vote
1
down vote
favorite
componentDidMount() {
for (let i = 0; i < 3; i++) {
let i = 'not a number'
console.log(i) // output only one time
}
}
componentDidMount() {
let i = 5 // add one line...
for (let i = 0; i < 3; i++) {
let i = 'not a number'
console.log(i) // output three times
}
}
Please notice that output times, if run these loops in browser directly, both these codes will output three times, but in react, it outputs only one time in for loop.
reactjs loops for-loop
Both are giving same output in react please check once again.
– Narendra Jadhav
Nov 15 at 4:38
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
componentDidMount() {
for (let i = 0; i < 3; i++) {
let i = 'not a number'
console.log(i) // output only one time
}
}
componentDidMount() {
let i = 5 // add one line...
for (let i = 0; i < 3; i++) {
let i = 'not a number'
console.log(i) // output three times
}
}
Please notice that output times, if run these loops in browser directly, both these codes will output three times, but in react, it outputs only one time in for loop.
reactjs loops for-loop
componentDidMount() {
for (let i = 0; i < 3; i++) {
let i = 'not a number'
console.log(i) // output only one time
}
}
componentDidMount() {
let i = 5 // add one line...
for (let i = 0; i < 3; i++) {
let i = 'not a number'
console.log(i) // output three times
}
}
Please notice that output times, if run these loops in browser directly, both these codes will output three times, but in react, it outputs only one time in for loop.
reactjs loops for-loop
reactjs loops for-loop
asked Nov 15 at 4:19
kd.xia
83
83
Both are giving same output in react please check once again.
– Narendra Jadhav
Nov 15 at 4:38
add a comment |
Both are giving same output in react please check once again.
– Narendra Jadhav
Nov 15 at 4:38
Both are giving same output in react please check once again.
– Narendra Jadhav
Nov 15 at 4:38
Both are giving same output in react please check once again.
– Narendra Jadhav
Nov 15 at 4:38
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
How do I fix it?
Change the second variable name
Why?
With your React environment, you are most likely using a JS compiler like Babel. Babel will take your code and make it runnable in most browsers, with this you have to get rid of const
and let
as some browsers don't support them, babel does this for you and replaces them with var
.
What's the difference? const
and let
are block scoped but var
is function scoped. So your variable i
get hoisted (moved) to the top of the "function" and shared by everyone. const
and let
are block scoped so they are only visible to their respective scopes, the i
declared in the for
loop's initializer can be seen by the initializer and the block of code following, but if you declare another variable i
in the follow block they become two different variables like such:
for (let i = 0; i < 3; i++) {
// they act like two different variables and are independent of each other
let g = 'not a number'
console.log(g)
}
// 1: i = 0, g (inner i) = 'not a number'
// 2: i = 1, g (inner i) = 'not a number'
// 3: i = 2, g (inner i) = 'not a number'
While React gets compiled to something like this
// variable i gets hoisted to the top
var i;
for (i = 0; i < 3; i++) {
i = 'not a number'
console.log(i)
}
// 1: i = 0
// 2: i = 'not a number' ('not a number' < 3 is false)
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
How do I fix it?
Change the second variable name
Why?
With your React environment, you are most likely using a JS compiler like Babel. Babel will take your code and make it runnable in most browsers, with this you have to get rid of const
and let
as some browsers don't support them, babel does this for you and replaces them with var
.
What's the difference? const
and let
are block scoped but var
is function scoped. So your variable i
get hoisted (moved) to the top of the "function" and shared by everyone. const
and let
are block scoped so they are only visible to their respective scopes, the i
declared in the for
loop's initializer can be seen by the initializer and the block of code following, but if you declare another variable i
in the follow block they become two different variables like such:
for (let i = 0; i < 3; i++) {
// they act like two different variables and are independent of each other
let g = 'not a number'
console.log(g)
}
// 1: i = 0, g (inner i) = 'not a number'
// 2: i = 1, g (inner i) = 'not a number'
// 3: i = 2, g (inner i) = 'not a number'
While React gets compiled to something like this
// variable i gets hoisted to the top
var i;
for (i = 0; i < 3; i++) {
i = 'not a number'
console.log(i)
}
// 1: i = 0
// 2: i = 'not a number' ('not a number' < 3 is false)
add a comment |
up vote
2
down vote
accepted
How do I fix it?
Change the second variable name
Why?
With your React environment, you are most likely using a JS compiler like Babel. Babel will take your code and make it runnable in most browsers, with this you have to get rid of const
and let
as some browsers don't support them, babel does this for you and replaces them with var
.
What's the difference? const
and let
are block scoped but var
is function scoped. So your variable i
get hoisted (moved) to the top of the "function" and shared by everyone. const
and let
are block scoped so they are only visible to their respective scopes, the i
declared in the for
loop's initializer can be seen by the initializer and the block of code following, but if you declare another variable i
in the follow block they become two different variables like such:
for (let i = 0; i < 3; i++) {
// they act like two different variables and are independent of each other
let g = 'not a number'
console.log(g)
}
// 1: i = 0, g (inner i) = 'not a number'
// 2: i = 1, g (inner i) = 'not a number'
// 3: i = 2, g (inner i) = 'not a number'
While React gets compiled to something like this
// variable i gets hoisted to the top
var i;
for (i = 0; i < 3; i++) {
i = 'not a number'
console.log(i)
}
// 1: i = 0
// 2: i = 'not a number' ('not a number' < 3 is false)
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
How do I fix it?
Change the second variable name
Why?
With your React environment, you are most likely using a JS compiler like Babel. Babel will take your code and make it runnable in most browsers, with this you have to get rid of const
and let
as some browsers don't support them, babel does this for you and replaces them with var
.
What's the difference? const
and let
are block scoped but var
is function scoped. So your variable i
get hoisted (moved) to the top of the "function" and shared by everyone. const
and let
are block scoped so they are only visible to their respective scopes, the i
declared in the for
loop's initializer can be seen by the initializer and the block of code following, but if you declare another variable i
in the follow block they become two different variables like such:
for (let i = 0; i < 3; i++) {
// they act like two different variables and are independent of each other
let g = 'not a number'
console.log(g)
}
// 1: i = 0, g (inner i) = 'not a number'
// 2: i = 1, g (inner i) = 'not a number'
// 3: i = 2, g (inner i) = 'not a number'
While React gets compiled to something like this
// variable i gets hoisted to the top
var i;
for (i = 0; i < 3; i++) {
i = 'not a number'
console.log(i)
}
// 1: i = 0
// 2: i = 'not a number' ('not a number' < 3 is false)
How do I fix it?
Change the second variable name
Why?
With your React environment, you are most likely using a JS compiler like Babel. Babel will take your code and make it runnable in most browsers, with this you have to get rid of const
and let
as some browsers don't support them, babel does this for you and replaces them with var
.
What's the difference? const
and let
are block scoped but var
is function scoped. So your variable i
get hoisted (moved) to the top of the "function" and shared by everyone. const
and let
are block scoped so they are only visible to their respective scopes, the i
declared in the for
loop's initializer can be seen by the initializer and the block of code following, but if you declare another variable i
in the follow block they become two different variables like such:
for (let i = 0; i < 3; i++) {
// they act like two different variables and are independent of each other
let g = 'not a number'
console.log(g)
}
// 1: i = 0, g (inner i) = 'not a number'
// 2: i = 1, g (inner i) = 'not a number'
// 3: i = 2, g (inner i) = 'not a number'
While React gets compiled to something like this
// variable i gets hoisted to the top
var i;
for (i = 0; i < 3; i++) {
i = 'not a number'
console.log(i)
}
// 1: i = 0
// 2: i = 'not a number' ('not a number' < 3 is false)
answered Nov 15 at 4:48
dotconnor
1,037120
1,037120
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53312389%2fconfused-for-loop-in-react%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
Both are giving same output in react please check once again.
– Narendra Jadhav
Nov 15 at 4:38