Javascript declare variable in global scope shorthand










0















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;









share|improve this question

















  • 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 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











  • 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















0















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;









share|improve this question

















  • 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 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











  • 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













0












0








0








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;









share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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? 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











  • 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





    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 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











  • 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












1 Answer
1






active

oldest

votes


















2














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.






share|improve this answer























  • 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 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










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
);



);













draft saved

draft discarded


















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









2














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.






share|improve this answer























  • 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 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















2














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.






share|improve this answer























  • 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 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













2












2








2







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.






share|improve this answer













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.







share|improve this answer












share|improve this answer



share|improve this answer










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 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

















  • 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 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
















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



















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Use pre created SQLite database for Android project in kotlin

Darth Vader #20

Ondo