I am having problem understanding the behavior of below code in JavaScript Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Convert character to ASCII code in JavaScriptInvoking JavaScript code in an iframe from the parent pageHow to execute a JavaScript function when I have its name as a stringHow to find event listeners on a DOM node when debugging or from the JavaScript code?Simplest code for array intersection in javascriptDoes JavaScript have a method like “range()” to generate a range within the supplied bounds?How to set a JavaScript breakpoint from code in Chrome?Can't access object property, even though it exists. Returns undefinedDoes Javascript writable descriptor prevent changes on instances?Can't define set and get methods

Is there hard evidence that the grant peer review system performs significantly better than random?

Is it possible for SQL statements to execute concurrently within a single session in SQL Server?

Why do early math courses focus on the cross sections of a cone and not on other 3D objects?

Putting class ranking in CV, but against dept guidelines

Why weren't discrete x86 CPUs ever used in game hardware?

Significance of Cersei's obsession with elephants?

When a candle burns, why does the top of wick glow if bottom of flame is hottest?

Why is Nikon 1.4g better when Nikon 1.8g is sharper?

Find 108 by using 3,4,6

What are the out-of-universe reasons for the references to Toby Maguire-era Spider-Man in Into the Spider-Verse?

Hangman Game with C++

Is it a good idea to use CNN to classify 1D signal?

Can anything be seen from the center of the Boötes void? How dark would it be?

ArcGIS Pro Python arcpy.CreatePersonalGDB_management

Did Deadpool rescue all of the X-Force?

Crossing US/Canada Border for less than 24 hours

How would a mousetrap for use in space work?

What order were files/directories outputted in dir?

Why is it faster to reheat something than it is to cook it?

What was the first language to use conditional keywords?

Take 2! Is this homebrew Lady of Pain warlock patron balanced?

Is there any word for a place full of confusion?

Do wooden building fires get hotter than 600°C?

Can a new player join a group only when a new campaign starts?



I am having problem understanding the behavior of below code in JavaScript



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!Convert character to ASCII code in JavaScriptInvoking JavaScript code in an iframe from the parent pageHow to execute a JavaScript function when I have its name as a stringHow to find event listeners on a DOM node when debugging or from the JavaScript code?Simplest code for array intersection in javascriptDoes JavaScript have a method like “range()” to generate a range within the supplied bounds?How to set a JavaScript breakpoint from code in Chrome?Can't access object property, even though it exists. Returns undefinedDoes Javascript writable descriptor prevent changes on instances?Can't define set and get methods



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








9















I was playing with below javascript code. Understanding of Object.defineProperty() and I am facing a strange issue with it. When I try to execute below code in the browser or in the VS code the output is not as expected whereas if I try to debug the code the output is correct



When I debug the code and evaluate the profile I can see the name & age property in the object
But at the time of output, it only shows the name property






//Code Snippet 
let profile =
name: 'Barry Allen',


// I added a new property in the profile object.
Object.defineProperty(profile, 'age',
value: 23,
writable: true
)

console.log(profile)
console.log(profile.age)





Now expected output here should be



name: "Barry Allen", age: 23
23


but I get the output as.
Note that I am able to access the age property defined afterwards.
I am not sure why the console.log() is behaving this way.



name: "Barry Allen"
23









share|improve this question









New contributor




Ravi W is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


























    9















    I was playing with below javascript code. Understanding of Object.defineProperty() and I am facing a strange issue with it. When I try to execute below code in the browser or in the VS code the output is not as expected whereas if I try to debug the code the output is correct



    When I debug the code and evaluate the profile I can see the name & age property in the object
    But at the time of output, it only shows the name property






    //Code Snippet 
    let profile =
    name: 'Barry Allen',


    // I added a new property in the profile object.
    Object.defineProperty(profile, 'age',
    value: 23,
    writable: true
    )

    console.log(profile)
    console.log(profile.age)





    Now expected output here should be



    name: "Barry Allen", age: 23
    23


    but I get the output as.
    Note that I am able to access the age property defined afterwards.
    I am not sure why the console.log() is behaving this way.



    name: "Barry Allen"
    23









    share|improve this question









    New contributor




    Ravi W is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      9












      9








      9








      I was playing with below javascript code. Understanding of Object.defineProperty() and I am facing a strange issue with it. When I try to execute below code in the browser or in the VS code the output is not as expected whereas if I try to debug the code the output is correct



      When I debug the code and evaluate the profile I can see the name & age property in the object
      But at the time of output, it only shows the name property






      //Code Snippet 
      let profile =
      name: 'Barry Allen',


      // I added a new property in the profile object.
      Object.defineProperty(profile, 'age',
      value: 23,
      writable: true
      )

      console.log(profile)
      console.log(profile.age)





      Now expected output here should be



      name: "Barry Allen", age: 23
      23


      but I get the output as.
      Note that I am able to access the age property defined afterwards.
      I am not sure why the console.log() is behaving this way.



      name: "Barry Allen"
      23









      share|improve this question









      New contributor




      Ravi W is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I was playing with below javascript code. Understanding of Object.defineProperty() and I am facing a strange issue with it. When I try to execute below code in the browser or in the VS code the output is not as expected whereas if I try to debug the code the output is correct



      When I debug the code and evaluate the profile I can see the name & age property in the object
      But at the time of output, it only shows the name property






      //Code Snippet 
      let profile =
      name: 'Barry Allen',


      // I added a new property in the profile object.
      Object.defineProperty(profile, 'age',
      value: 23,
      writable: true
      )

      console.log(profile)
      console.log(profile.age)





      Now expected output here should be



      name: "Barry Allen", age: 23
      23


      but I get the output as.
      Note that I am able to access the age property defined afterwards.
      I am not sure why the console.log() is behaving this way.



      name: "Barry Allen"
      23





      //Code Snippet 
      let profile =
      name: 'Barry Allen',


      // I added a new property in the profile object.
      Object.defineProperty(profile, 'age',
      value: 23,
      writable: true
      )

      console.log(profile)
      console.log(profile.age)





      //Code Snippet 
      let profile =
      name: 'Barry Allen',


      // I added a new property in the profile object.
      Object.defineProperty(profile, 'age',
      value: 23,
      writable: true
      )

      console.log(profile)
      console.log(profile.age)






      javascript






      share|improve this question









      New contributor




      Ravi W is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      Ravi W is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited 1 hour ago









      Eddie

      20.3k51642




      20.3k51642






      New contributor




      Ravi W is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 1 hour ago









      Ravi WRavi W

      484




      484




      New contributor




      Ravi W is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Ravi W is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Ravi W is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          3 Answers
          3






          active

          oldest

          votes


















          10














          You should set enumerable to true. In Object.defineProperty its false by default. According to MDN.




          enumerable

          true if and only if this property shows up during enumeration of the properties on the corresponding object.
          Defaults to false.




          Non-enumerable means that property will not be shown in Object.keys() or for..in loop neither in console






          let profile = 
          name: 'Barry Allen',


          // I added a new property in the profile object.

          Object.defineProperty(profile , 'age',
          value: 23,
          writable: true,
          enumerable: true
          )
          console.log(profile)
          console.log(profile.age)





          All the properties and methods on prototype object of built-in classes are non-enumerable. Thats is the reason you can call them from instance but they don't appear while iterating.



          To get all properties(including non-enumerable)Object​.get​OwnProperty​Names()
          .






          let profile = 
          name: 'Barry Allen',


          // I added a new property in the profile object.

          Object.defineProperty(profile , 'age',
          value: 23,
          writable: true,
          enumerable: false
          )
          for(let key in profile) console.log(key) //only name will be displayed.

          console.log(Object.getOwnPropertyNames(profile)) //You will se age too








          share|improve this answer

























          • I didn't knew about this, but when I checked by running the local code in browser, it shows up perfectly (in spite of explicitly specifying enumerable to false).

            – randomSoul
            1 hour ago











          • @randomSoul I can't get what you mean.

            – Maheer Ali
            1 hour ago












          • See - pasteboard.co/IaOxMqB.png . I did not set enumerable to true for age, but still it is shown.

            – randomSoul
            58 mins ago












          • @randomSoul See the comments of the answer of certain performance.

            – Maheer Ali
            39 mins ago






          • 2





            @randomSoul In Chrome console, you should see unenumerable properties colored a little bit transparent.

            – Yong Quan
            37 mins ago



















          6














          By default, properties you define with defineProperty are not enumerable - this means that they will not show up when you iterate over their Object.keys (which is what the snippet console does). (Similarly, the length property of an array does not get displayed, because it's non-enumerable.)



          See MDN:




          enumerable



          true if and only if this property shows up during enumeration of the properties on the corresponding object.



          Defaults to false.




          Make it enumerable instead:






          //Code Snippet 
          let profile =
          name: 'Barry Allen',


          // I added a new property in the profile object.
          Object.defineProperty(profile, 'age',
          value: 23,
          writable: true,
          enumerable: true
          )

          console.log(profile)
          console.log(profile.age)





          The reason you can see the property in the logged image is that Chrome's console will show you non-enumerable properties as well - but the non-enumerable properties will be slightly greyed-out:



          enter image description here



          See how age is grey-ish, while name is not - this indicates that name is enumerable, and age is not.






          share|improve this answer

























          • Someone give this pasteboard.co/IaOxMqB.png Its showing age property in chrome console. Can you please explain that? Does chrome console works differently?

            – Maheer Ali
            46 mins ago












          • Yes, that's a Chrome console behavior - it'll show you all properties, including non-enumerable ones, see edit. The non-enumerable properties (like age and __proto__) will be slightly greyed out.

            – CertainPerformance
            40 mins ago


















          2














          Whenever you use".defineProperty" method of object. You should better define all the properties of the descriptor. Because if you don't define other property descriptor then it assumes default values for all of them which is false. So your console.log checks for all the enumerable : true properties and logs them.



          //Code Snippet 
          let profile =
          name: 'Barry Allen',


          // I added a new property in the profile object.
          Object.defineProperty(profile, 'age',
          value: 23,
          writable: true,
          enumerable : true,
          configurable : true
          )

          console.log(profile)
          console.log(profile.age)





          share|improve this answer























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



            );






            Ravi W is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55757089%2fi-am-having-problem-understanding-the-behavior-of-below-code-in-javascript%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









            10














            You should set enumerable to true. In Object.defineProperty its false by default. According to MDN.




            enumerable

            true if and only if this property shows up during enumeration of the properties on the corresponding object.
            Defaults to false.




            Non-enumerable means that property will not be shown in Object.keys() or for..in loop neither in console






            let profile = 
            name: 'Barry Allen',


            // I added a new property in the profile object.

            Object.defineProperty(profile , 'age',
            value: 23,
            writable: true,
            enumerable: true
            )
            console.log(profile)
            console.log(profile.age)





            All the properties and methods on prototype object of built-in classes are non-enumerable. Thats is the reason you can call them from instance but they don't appear while iterating.



            To get all properties(including non-enumerable)Object​.get​OwnProperty​Names()
            .






            let profile = 
            name: 'Barry Allen',


            // I added a new property in the profile object.

            Object.defineProperty(profile , 'age',
            value: 23,
            writable: true,
            enumerable: false
            )
            for(let key in profile) console.log(key) //only name will be displayed.

            console.log(Object.getOwnPropertyNames(profile)) //You will se age too








            share|improve this answer

























            • I didn't knew about this, but when I checked by running the local code in browser, it shows up perfectly (in spite of explicitly specifying enumerable to false).

              – randomSoul
              1 hour ago











            • @randomSoul I can't get what you mean.

              – Maheer Ali
              1 hour ago












            • See - pasteboard.co/IaOxMqB.png . I did not set enumerable to true for age, but still it is shown.

              – randomSoul
              58 mins ago












            • @randomSoul See the comments of the answer of certain performance.

              – Maheer Ali
              39 mins ago






            • 2





              @randomSoul In Chrome console, you should see unenumerable properties colored a little bit transparent.

              – Yong Quan
              37 mins ago
















            10














            You should set enumerable to true. In Object.defineProperty its false by default. According to MDN.




            enumerable

            true if and only if this property shows up during enumeration of the properties on the corresponding object.
            Defaults to false.




            Non-enumerable means that property will not be shown in Object.keys() or for..in loop neither in console






            let profile = 
            name: 'Barry Allen',


            // I added a new property in the profile object.

            Object.defineProperty(profile , 'age',
            value: 23,
            writable: true,
            enumerable: true
            )
            console.log(profile)
            console.log(profile.age)





            All the properties and methods on prototype object of built-in classes are non-enumerable. Thats is the reason you can call them from instance but they don't appear while iterating.



            To get all properties(including non-enumerable)Object​.get​OwnProperty​Names()
            .






            let profile = 
            name: 'Barry Allen',


            // I added a new property in the profile object.

            Object.defineProperty(profile , 'age',
            value: 23,
            writable: true,
            enumerable: false
            )
            for(let key in profile) console.log(key) //only name will be displayed.

            console.log(Object.getOwnPropertyNames(profile)) //You will se age too








            share|improve this answer

























            • I didn't knew about this, but when I checked by running the local code in browser, it shows up perfectly (in spite of explicitly specifying enumerable to false).

              – randomSoul
              1 hour ago











            • @randomSoul I can't get what you mean.

              – Maheer Ali
              1 hour ago












            • See - pasteboard.co/IaOxMqB.png . I did not set enumerable to true for age, but still it is shown.

              – randomSoul
              58 mins ago












            • @randomSoul See the comments of the answer of certain performance.

              – Maheer Ali
              39 mins ago






            • 2





              @randomSoul In Chrome console, you should see unenumerable properties colored a little bit transparent.

              – Yong Quan
              37 mins ago














            10












            10








            10







            You should set enumerable to true. In Object.defineProperty its false by default. According to MDN.




            enumerable

            true if and only if this property shows up during enumeration of the properties on the corresponding object.
            Defaults to false.




            Non-enumerable means that property will not be shown in Object.keys() or for..in loop neither in console






            let profile = 
            name: 'Barry Allen',


            // I added a new property in the profile object.

            Object.defineProperty(profile , 'age',
            value: 23,
            writable: true,
            enumerable: true
            )
            console.log(profile)
            console.log(profile.age)





            All the properties and methods on prototype object of built-in classes are non-enumerable. Thats is the reason you can call them from instance but they don't appear while iterating.



            To get all properties(including non-enumerable)Object​.get​OwnProperty​Names()
            .






            let profile = 
            name: 'Barry Allen',


            // I added a new property in the profile object.

            Object.defineProperty(profile , 'age',
            value: 23,
            writable: true,
            enumerable: false
            )
            for(let key in profile) console.log(key) //only name will be displayed.

            console.log(Object.getOwnPropertyNames(profile)) //You will se age too








            share|improve this answer















            You should set enumerable to true. In Object.defineProperty its false by default. According to MDN.




            enumerable

            true if and only if this property shows up during enumeration of the properties on the corresponding object.
            Defaults to false.




            Non-enumerable means that property will not be shown in Object.keys() or for..in loop neither in console






            let profile = 
            name: 'Barry Allen',


            // I added a new property in the profile object.

            Object.defineProperty(profile , 'age',
            value: 23,
            writable: true,
            enumerable: true
            )
            console.log(profile)
            console.log(profile.age)





            All the properties and methods on prototype object of built-in classes are non-enumerable. Thats is the reason you can call them from instance but they don't appear while iterating.



            To get all properties(including non-enumerable)Object​.get​OwnProperty​Names()
            .






            let profile = 
            name: 'Barry Allen',


            // I added a new property in the profile object.

            Object.defineProperty(profile , 'age',
            value: 23,
            writable: true,
            enumerable: false
            )
            for(let key in profile) console.log(key) //only name will be displayed.

            console.log(Object.getOwnPropertyNames(profile)) //You will se age too








            let profile = 
            name: 'Barry Allen',


            // I added a new property in the profile object.

            Object.defineProperty(profile , 'age',
            value: 23,
            writable: true,
            enumerable: true
            )
            console.log(profile)
            console.log(profile.age)





            let profile = 
            name: 'Barry Allen',


            // I added a new property in the profile object.

            Object.defineProperty(profile , 'age',
            value: 23,
            writable: true,
            enumerable: true
            )
            console.log(profile)
            console.log(profile.age)





            let profile = 
            name: 'Barry Allen',


            // I added a new property in the profile object.

            Object.defineProperty(profile , 'age',
            value: 23,
            writable: true,
            enumerable: false
            )
            for(let key in profile) console.log(key) //only name will be displayed.

            console.log(Object.getOwnPropertyNames(profile)) //You will se age too





            let profile = 
            name: 'Barry Allen',


            // I added a new property in the profile object.

            Object.defineProperty(profile , 'age',
            value: 23,
            writable: true,
            enumerable: false
            )
            for(let key in profile) console.log(key) //only name will be displayed.

            console.log(Object.getOwnPropertyNames(profile)) //You will se age too






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 35 mins ago

























            answered 1 hour ago









            Maheer AliMaheer Ali

            11.5k927




            11.5k927












            • I didn't knew about this, but when I checked by running the local code in browser, it shows up perfectly (in spite of explicitly specifying enumerable to false).

              – randomSoul
              1 hour ago











            • @randomSoul I can't get what you mean.

              – Maheer Ali
              1 hour ago












            • See - pasteboard.co/IaOxMqB.png . I did not set enumerable to true for age, but still it is shown.

              – randomSoul
              58 mins ago












            • @randomSoul See the comments of the answer of certain performance.

              – Maheer Ali
              39 mins ago






            • 2





              @randomSoul In Chrome console, you should see unenumerable properties colored a little bit transparent.

              – Yong Quan
              37 mins ago


















            • I didn't knew about this, but when I checked by running the local code in browser, it shows up perfectly (in spite of explicitly specifying enumerable to false).

              – randomSoul
              1 hour ago











            • @randomSoul I can't get what you mean.

              – Maheer Ali
              1 hour ago












            • See - pasteboard.co/IaOxMqB.png . I did not set enumerable to true for age, but still it is shown.

              – randomSoul
              58 mins ago












            • @randomSoul See the comments of the answer of certain performance.

              – Maheer Ali
              39 mins ago






            • 2





              @randomSoul In Chrome console, you should see unenumerable properties colored a little bit transparent.

              – Yong Quan
              37 mins ago

















            I didn't knew about this, but when I checked by running the local code in browser, it shows up perfectly (in spite of explicitly specifying enumerable to false).

            – randomSoul
            1 hour ago





            I didn't knew about this, but when I checked by running the local code in browser, it shows up perfectly (in spite of explicitly specifying enumerable to false).

            – randomSoul
            1 hour ago













            @randomSoul I can't get what you mean.

            – Maheer Ali
            1 hour ago






            @randomSoul I can't get what you mean.

            – Maheer Ali
            1 hour ago














            See - pasteboard.co/IaOxMqB.png . I did not set enumerable to true for age, but still it is shown.

            – randomSoul
            58 mins ago






            See - pasteboard.co/IaOxMqB.png . I did not set enumerable to true for age, but still it is shown.

            – randomSoul
            58 mins ago














            @randomSoul See the comments of the answer of certain performance.

            – Maheer Ali
            39 mins ago





            @randomSoul See the comments of the answer of certain performance.

            – Maheer Ali
            39 mins ago




            2




            2





            @randomSoul In Chrome console, you should see unenumerable properties colored a little bit transparent.

            – Yong Quan
            37 mins ago






            @randomSoul In Chrome console, you should see unenumerable properties colored a little bit transparent.

            – Yong Quan
            37 mins ago














            6














            By default, properties you define with defineProperty are not enumerable - this means that they will not show up when you iterate over their Object.keys (which is what the snippet console does). (Similarly, the length property of an array does not get displayed, because it's non-enumerable.)



            See MDN:




            enumerable



            true if and only if this property shows up during enumeration of the properties on the corresponding object.



            Defaults to false.




            Make it enumerable instead:






            //Code Snippet 
            let profile =
            name: 'Barry Allen',


            // I added a new property in the profile object.
            Object.defineProperty(profile, 'age',
            value: 23,
            writable: true,
            enumerable: true
            )

            console.log(profile)
            console.log(profile.age)





            The reason you can see the property in the logged image is that Chrome's console will show you non-enumerable properties as well - but the non-enumerable properties will be slightly greyed-out:



            enter image description here



            See how age is grey-ish, while name is not - this indicates that name is enumerable, and age is not.






            share|improve this answer

























            • Someone give this pasteboard.co/IaOxMqB.png Its showing age property in chrome console. Can you please explain that? Does chrome console works differently?

              – Maheer Ali
              46 mins ago












            • Yes, that's a Chrome console behavior - it'll show you all properties, including non-enumerable ones, see edit. The non-enumerable properties (like age and __proto__) will be slightly greyed out.

              – CertainPerformance
              40 mins ago















            6














            By default, properties you define with defineProperty are not enumerable - this means that they will not show up when you iterate over their Object.keys (which is what the snippet console does). (Similarly, the length property of an array does not get displayed, because it's non-enumerable.)



            See MDN:




            enumerable



            true if and only if this property shows up during enumeration of the properties on the corresponding object.



            Defaults to false.




            Make it enumerable instead:






            //Code Snippet 
            let profile =
            name: 'Barry Allen',


            // I added a new property in the profile object.
            Object.defineProperty(profile, 'age',
            value: 23,
            writable: true,
            enumerable: true
            )

            console.log(profile)
            console.log(profile.age)





            The reason you can see the property in the logged image is that Chrome's console will show you non-enumerable properties as well - but the non-enumerable properties will be slightly greyed-out:



            enter image description here



            See how age is grey-ish, while name is not - this indicates that name is enumerable, and age is not.






            share|improve this answer

























            • Someone give this pasteboard.co/IaOxMqB.png Its showing age property in chrome console. Can you please explain that? Does chrome console works differently?

              – Maheer Ali
              46 mins ago












            • Yes, that's a Chrome console behavior - it'll show you all properties, including non-enumerable ones, see edit. The non-enumerable properties (like age and __proto__) will be slightly greyed out.

              – CertainPerformance
              40 mins ago













            6












            6








            6







            By default, properties you define with defineProperty are not enumerable - this means that they will not show up when you iterate over their Object.keys (which is what the snippet console does). (Similarly, the length property of an array does not get displayed, because it's non-enumerable.)



            See MDN:




            enumerable



            true if and only if this property shows up during enumeration of the properties on the corresponding object.



            Defaults to false.




            Make it enumerable instead:






            //Code Snippet 
            let profile =
            name: 'Barry Allen',


            // I added a new property in the profile object.
            Object.defineProperty(profile, 'age',
            value: 23,
            writable: true,
            enumerable: true
            )

            console.log(profile)
            console.log(profile.age)





            The reason you can see the property in the logged image is that Chrome's console will show you non-enumerable properties as well - but the non-enumerable properties will be slightly greyed-out:



            enter image description here



            See how age is grey-ish, while name is not - this indicates that name is enumerable, and age is not.






            share|improve this answer















            By default, properties you define with defineProperty are not enumerable - this means that they will not show up when you iterate over their Object.keys (which is what the snippet console does). (Similarly, the length property of an array does not get displayed, because it's non-enumerable.)



            See MDN:




            enumerable



            true if and only if this property shows up during enumeration of the properties on the corresponding object.



            Defaults to false.




            Make it enumerable instead:






            //Code Snippet 
            let profile =
            name: 'Barry Allen',


            // I added a new property in the profile object.
            Object.defineProperty(profile, 'age',
            value: 23,
            writable: true,
            enumerable: true
            )

            console.log(profile)
            console.log(profile.age)





            The reason you can see the property in the logged image is that Chrome's console will show you non-enumerable properties as well - but the non-enumerable properties will be slightly greyed-out:



            enter image description here



            See how age is grey-ish, while name is not - this indicates that name is enumerable, and age is not.






            //Code Snippet 
            let profile =
            name: 'Barry Allen',


            // I added a new property in the profile object.
            Object.defineProperty(profile, 'age',
            value: 23,
            writable: true,
            enumerable: true
            )

            console.log(profile)
            console.log(profile.age)





            //Code Snippet 
            let profile =
            name: 'Barry Allen',


            // I added a new property in the profile object.
            Object.defineProperty(profile, 'age',
            value: 23,
            writable: true,
            enumerable: true
            )

            console.log(profile)
            console.log(profile.age)






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 41 mins ago

























            answered 1 hour ago









            CertainPerformanceCertainPerformance

            101k166291




            101k166291












            • Someone give this pasteboard.co/IaOxMqB.png Its showing age property in chrome console. Can you please explain that? Does chrome console works differently?

              – Maheer Ali
              46 mins ago












            • Yes, that's a Chrome console behavior - it'll show you all properties, including non-enumerable ones, see edit. The non-enumerable properties (like age and __proto__) will be slightly greyed out.

              – CertainPerformance
              40 mins ago

















            • Someone give this pasteboard.co/IaOxMqB.png Its showing age property in chrome console. Can you please explain that? Does chrome console works differently?

              – Maheer Ali
              46 mins ago












            • Yes, that's a Chrome console behavior - it'll show you all properties, including non-enumerable ones, see edit. The non-enumerable properties (like age and __proto__) will be slightly greyed out.

              – CertainPerformance
              40 mins ago
















            Someone give this pasteboard.co/IaOxMqB.png Its showing age property in chrome console. Can you please explain that? Does chrome console works differently?

            – Maheer Ali
            46 mins ago






            Someone give this pasteboard.co/IaOxMqB.png Its showing age property in chrome console. Can you please explain that? Does chrome console works differently?

            – Maheer Ali
            46 mins ago














            Yes, that's a Chrome console behavior - it'll show you all properties, including non-enumerable ones, see edit. The non-enumerable properties (like age and __proto__) will be slightly greyed out.

            – CertainPerformance
            40 mins ago





            Yes, that's a Chrome console behavior - it'll show you all properties, including non-enumerable ones, see edit. The non-enumerable properties (like age and __proto__) will be slightly greyed out.

            – CertainPerformance
            40 mins ago











            2














            Whenever you use".defineProperty" method of object. You should better define all the properties of the descriptor. Because if you don't define other property descriptor then it assumes default values for all of them which is false. So your console.log checks for all the enumerable : true properties and logs them.



            //Code Snippet 
            let profile =
            name: 'Barry Allen',


            // I added a new property in the profile object.
            Object.defineProperty(profile, 'age',
            value: 23,
            writable: true,
            enumerable : true,
            configurable : true
            )

            console.log(profile)
            console.log(profile.age)





            share|improve this answer



























              2














              Whenever you use".defineProperty" method of object. You should better define all the properties of the descriptor. Because if you don't define other property descriptor then it assumes default values for all of them which is false. So your console.log checks for all the enumerable : true properties and logs them.



              //Code Snippet 
              let profile =
              name: 'Barry Allen',


              // I added a new property in the profile object.
              Object.defineProperty(profile, 'age',
              value: 23,
              writable: true,
              enumerable : true,
              configurable : true
              )

              console.log(profile)
              console.log(profile.age)





              share|improve this answer

























                2












                2








                2







                Whenever you use".defineProperty" method of object. You should better define all the properties of the descriptor. Because if you don't define other property descriptor then it assumes default values for all of them which is false. So your console.log checks for all the enumerable : true properties and logs them.



                //Code Snippet 
                let profile =
                name: 'Barry Allen',


                // I added a new property in the profile object.
                Object.defineProperty(profile, 'age',
                value: 23,
                writable: true,
                enumerable : true,
                configurable : true
                )

                console.log(profile)
                console.log(profile.age)





                share|improve this answer













                Whenever you use".defineProperty" method of object. You should better define all the properties of the descriptor. Because if you don't define other property descriptor then it assumes default values for all of them which is false. So your console.log checks for all the enumerable : true properties and logs them.



                //Code Snippet 
                let profile =
                name: 'Barry Allen',


                // I added a new property in the profile object.
                Object.defineProperty(profile, 'age',
                value: 23,
                writable: true,
                enumerable : true,
                configurable : true
                )

                console.log(profile)
                console.log(profile.age)






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 1 hour ago









                RK_15RK_15

                5899




                5899




















                    Ravi W is a new contributor. Be nice, and check out our Code of Conduct.









                    draft saved

                    draft discarded


















                    Ravi W is a new contributor. Be nice, and check out our Code of Conduct.












                    Ravi W is a new contributor. Be nice, and check out our Code of Conduct.











                    Ravi W is a new contributor. Be nice, and check out our Code of Conduct.














                    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%2f55757089%2fi-am-having-problem-understanding-the-behavior-of-below-code-in-javascript%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

                    Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

                    Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

                    Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367