Javascript declare variable in global scope shorthand
var object = name: "Murad";
(function(window)
var a = b = 10;
)(object)
Why I can access b variable in global scope?
var a = b = 10
is not same thing with?
window.b = 10;
var a = window.b;
javascript scope ecmascript-5
add a comment |
var object = name: "Murad";
(function(window)
var a = b = 10;
)(object)
Why I can access b variable in global scope?
var a = b = 10
is not same thing with?
window.b = 10;
var a = window.b;
javascript scope ecmascript-5
1
object
has nothing to do with your question
– Ahmad
Nov 14 '18 at 11:47
Nope has. When U write window.b = 20 inside function b declare inside object
– Murad Sofiyev
Nov 14 '18 at 11:48
What are you trying to do exactly? Sinceb
is not in the current scope, it will be put on the outer scope (the globalwindow
object in the browser)
– Tommos
Nov 14 '18 at 11:48
try it with"use strict"
.
– Alnitak
Nov 14 '18 at 11:49
I know when declare variable without var its declare inside global scope but my question is declare variable without var its convert window.variableName yeah? And i change window object with a. I want do declare variable inside a
– Murad Sofiyev
Nov 14 '18 at 11:51
add a comment |
var object = name: "Murad";
(function(window)
var a = b = 10;
)(object)
Why I can access b variable in global scope?
var a = b = 10
is not same thing with?
window.b = 10;
var a = window.b;
javascript scope ecmascript-5
var object = name: "Murad";
(function(window)
var a = b = 10;
)(object)
Why I can access b variable in global scope?
var a = b = 10
is not same thing with?
window.b = 10;
var a = window.b;
javascript scope ecmascript-5
javascript scope ecmascript-5
asked Nov 14 '18 at 11:45
Murad SofiyevMurad Sofiyev
346314
346314
1
object
has nothing to do with your question
– Ahmad
Nov 14 '18 at 11:47
Nope has. When U write window.b = 20 inside function b declare inside object
– Murad Sofiyev
Nov 14 '18 at 11:48
What are you trying to do exactly? Sinceb
is not in the current scope, it will be put on the outer scope (the globalwindow
object in the browser)
– Tommos
Nov 14 '18 at 11:48
try it with"use strict"
.
– Alnitak
Nov 14 '18 at 11:49
I know when declare variable without var its declare inside global scope but my question is declare variable without var its convert window.variableName yeah? And i change window object with a. I want do declare variable inside a
– Murad Sofiyev
Nov 14 '18 at 11:51
add a comment |
1
object
has nothing to do with your question
– Ahmad
Nov 14 '18 at 11:47
Nope has. When U write window.b = 20 inside function b declare inside object
– Murad Sofiyev
Nov 14 '18 at 11:48
What are you trying to do exactly? Sinceb
is not in the current scope, it will be put on the outer scope (the globalwindow
object in the browser)
– Tommos
Nov 14 '18 at 11:48
try it with"use strict"
.
– Alnitak
Nov 14 '18 at 11:49
I know when declare variable without var its declare inside global scope but my question is declare variable without var its convert window.variableName yeah? And i change window object with a. I want do declare variable inside a
– Murad Sofiyev
Nov 14 '18 at 11:51
1
1
object
has nothing to do with your question– Ahmad
Nov 14 '18 at 11:47
object
has nothing to do with your question– Ahmad
Nov 14 '18 at 11:47
Nope has. When U write window.b = 20 inside function b declare inside object
– Murad Sofiyev
Nov 14 '18 at 11:48
Nope has. When U write window.b = 20 inside function b declare inside object
– Murad Sofiyev
Nov 14 '18 at 11:48
What are you trying to do exactly? Since
b
is not in the current scope, it will be put on the outer scope (the global window
object in the browser)– Tommos
Nov 14 '18 at 11:48
What are you trying to do exactly? Since
b
is not in the current scope, it will be put on the outer scope (the global window
object in the browser)– Tommos
Nov 14 '18 at 11:48
try it with
"use strict"
.– Alnitak
Nov 14 '18 at 11:49
try it with
"use strict"
.– Alnitak
Nov 14 '18 at 11:49
I know when declare variable without var its declare inside global scope but my question is declare variable without var its convert window.variableName yeah? And i change window object with a. I want do declare variable inside a
– Murad Sofiyev
Nov 14 '18 at 11:51
I know when declare variable without var its declare inside global scope but my question is declare variable without var its convert window.variableName yeah? And i change window object with a. I want do declare variable inside a
– Murad Sofiyev
Nov 14 '18 at 11:51
add a comment |
1 Answer
1
active
oldest
votes
You can access variable b because you give a variable name - b, but you do not declare it like var let or const. JS will see that a name is allocated for a variable and it will create the variable automatically in the global scope.
Yeah I know but when u declare variable without var its convert window.variableName yeah? And i change window object with a
– Murad Sofiyev
Nov 14 '18 at 11:50
2
no, it doesn't first convert it towindow.var
, it will actually put it on the globalwindow
object. It doesn't matter if you have a differentwindow
in your current scope
– Tommos
Nov 14 '18 at 11:53
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%2f53299487%2fjavascript-declare-variable-in-global-scope-shorthand%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can access variable b because you give a variable name - b, but you do not declare it like var let or const. JS will see that a name is allocated for a variable and it will create the variable automatically in the global scope.
Yeah I know but when u declare variable without var its convert window.variableName yeah? And i change window object with a
– Murad Sofiyev
Nov 14 '18 at 11:50
2
no, it doesn't first convert it towindow.var
, it will actually put it on the globalwindow
object. It doesn't matter if you have a differentwindow
in your current scope
– Tommos
Nov 14 '18 at 11:53
add a comment |
You can access variable b because you give a variable name - b, but you do not declare it like var let or const. JS will see that a name is allocated for a variable and it will create the variable automatically in the global scope.
Yeah I know but when u declare variable without var its convert window.variableName yeah? And i change window object with a
– Murad Sofiyev
Nov 14 '18 at 11:50
2
no, it doesn't first convert it towindow.var
, it will actually put it on the globalwindow
object. It doesn't matter if you have a differentwindow
in your current scope
– Tommos
Nov 14 '18 at 11:53
add a comment |
You can access variable b because you give a variable name - b, but you do not declare it like var let or const. JS will see that a name is allocated for a variable and it will create the variable automatically in the global scope.
You can access variable b because you give a variable name - b, but you do not declare it like var let or const. JS will see that a name is allocated for a variable and it will create the variable automatically in the global scope.
answered Nov 14 '18 at 11:48
squeekyDavesqueekyDave
479216
479216
Yeah I know but when u declare variable without var its convert window.variableName yeah? And i change window object with a
– Murad Sofiyev
Nov 14 '18 at 11:50
2
no, it doesn't first convert it towindow.var
, it will actually put it on the globalwindow
object. It doesn't matter if you have a differentwindow
in your current scope
– Tommos
Nov 14 '18 at 11:53
add a comment |
Yeah I know but when u declare variable without var its convert window.variableName yeah? And i change window object with a
– Murad Sofiyev
Nov 14 '18 at 11:50
2
no, it doesn't first convert it towindow.var
, it will actually put it on the globalwindow
object. It doesn't matter if you have a differentwindow
in your current scope
– Tommos
Nov 14 '18 at 11:53
Yeah I know but when u declare variable without var its convert window.variableName yeah? And i change window object with a
– Murad Sofiyev
Nov 14 '18 at 11:50
Yeah I know but when u declare variable without var its convert window.variableName yeah? And i change window object with a
– Murad Sofiyev
Nov 14 '18 at 11:50
2
2
no, it doesn't first convert it to
window.var
, it will actually put it on the global window
object. It doesn't matter if you have a different window
in your current scope– Tommos
Nov 14 '18 at 11:53
no, it doesn't first convert it to
window.var
, it will actually put it on the global window
object. It doesn't matter if you have a different window
in your current scope– Tommos
Nov 14 '18 at 11:53
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%2f53299487%2fjavascript-declare-variable-in-global-scope-shorthand%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
1
object
has nothing to do with your question– Ahmad
Nov 14 '18 at 11:47
Nope has. When U write window.b = 20 inside function b declare inside object
– Murad Sofiyev
Nov 14 '18 at 11:48
What are you trying to do exactly? Since
b
is not in the current scope, it will be put on the outer scope (the globalwindow
object in the browser)– Tommos
Nov 14 '18 at 11:48
try it with
"use strict"
.– Alnitak
Nov 14 '18 at 11:49
I know when declare variable without var its declare inside global scope but my question is declare variable without var its convert window.variableName yeah? And i change window object with a. I want do declare variable inside a
– Murad Sofiyev
Nov 14 '18 at 11:51