Object.keys returns an empty array for an object containing properties
My project contains an ES6 class whose constructor is defined as follows:
constructor() {
this.campaignName = 'United Way';
this.campaign = {};
this.questions = {};
this.benefits = {};
this.assistors = {};
this.locations = {};
this.buildDataObjects = this.buildDataObjects.bind(this);
this.retrieve();
}
Later in the code, the properties with default values of empty objects are given new values using Object.assign; however, I do not believe that code has any relevance for solving the problem at hand, so it is not included.
Elsewhere in the project's codebase, an instance of the class is being output using console.info:
As evident from the screenshot, there is seemingly nothing unusual about the object.
Next, the object's "questions" property is output:
The first line in the screenshot is an empty object, even though the output below includes the object's properties. However, those properties are inaccessible, as evident by the fact that calling Object.keys
with the given object produces an empty array.
I am at a total loss as to the cause of this behavior and would appreciate some insight. Thanks in advance!
javascript ecmascript-6
add a comment |
My project contains an ES6 class whose constructor is defined as follows:
constructor() {
this.campaignName = 'United Way';
this.campaign = {};
this.questions = {};
this.benefits = {};
this.assistors = {};
this.locations = {};
this.buildDataObjects = this.buildDataObjects.bind(this);
this.retrieve();
}
Later in the code, the properties with default values of empty objects are given new values using Object.assign; however, I do not believe that code has any relevance for solving the problem at hand, so it is not included.
Elsewhere in the project's codebase, an instance of the class is being output using console.info:
As evident from the screenshot, there is seemingly nothing unusual about the object.
Next, the object's "questions" property is output:
The first line in the screenshot is an empty object, even though the output below includes the object's properties. However, those properties are inaccessible, as evident by the fact that calling Object.keys
with the given object produces an empty array.
I am at a total loss as to the cause of this behavior and would appreciate some insight. Thanks in advance!
javascript ecmascript-6
The fact that the object shows as{}
and afterwards has elements tells you that the questions only exist after you log them in the console. Hence the how and when the "questions" are generated/assigned does matter.
– Andreas
Nov 22 '18 at 17:36
Interesting...the second line is part of the same console.info output so how can they only exist after they're logged?
– Boris Layvant
Nov 22 '18 at 17:40
1
Why is my variable unaltered after I modify it inside of a function? - Asynchronous code reference
– Andreas
Nov 22 '18 at 17:44
@Andres you are correct. It turns out that the assignment of a new value for questions was taking place after console.info was called.
– Boris Layvant
Nov 22 '18 at 18:05
add a comment |
My project contains an ES6 class whose constructor is defined as follows:
constructor() {
this.campaignName = 'United Way';
this.campaign = {};
this.questions = {};
this.benefits = {};
this.assistors = {};
this.locations = {};
this.buildDataObjects = this.buildDataObjects.bind(this);
this.retrieve();
}
Later in the code, the properties with default values of empty objects are given new values using Object.assign; however, I do not believe that code has any relevance for solving the problem at hand, so it is not included.
Elsewhere in the project's codebase, an instance of the class is being output using console.info:
As evident from the screenshot, there is seemingly nothing unusual about the object.
Next, the object's "questions" property is output:
The first line in the screenshot is an empty object, even though the output below includes the object's properties. However, those properties are inaccessible, as evident by the fact that calling Object.keys
with the given object produces an empty array.
I am at a total loss as to the cause of this behavior and would appreciate some insight. Thanks in advance!
javascript ecmascript-6
My project contains an ES6 class whose constructor is defined as follows:
constructor() {
this.campaignName = 'United Way';
this.campaign = {};
this.questions = {};
this.benefits = {};
this.assistors = {};
this.locations = {};
this.buildDataObjects = this.buildDataObjects.bind(this);
this.retrieve();
}
Later in the code, the properties with default values of empty objects are given new values using Object.assign; however, I do not believe that code has any relevance for solving the problem at hand, so it is not included.
Elsewhere in the project's codebase, an instance of the class is being output using console.info:
As evident from the screenshot, there is seemingly nothing unusual about the object.
Next, the object's "questions" property is output:
The first line in the screenshot is an empty object, even though the output below includes the object's properties. However, those properties are inaccessible, as evident by the fact that calling Object.keys
with the given object produces an empty array.
I am at a total loss as to the cause of this behavior and would appreciate some insight. Thanks in advance!
javascript ecmascript-6
javascript ecmascript-6
asked Nov 22 '18 at 17:28
Boris LayvantBoris Layvant
287
287
The fact that the object shows as{}
and afterwards has elements tells you that the questions only exist after you log them in the console. Hence the how and when the "questions" are generated/assigned does matter.
– Andreas
Nov 22 '18 at 17:36
Interesting...the second line is part of the same console.info output so how can they only exist after they're logged?
– Boris Layvant
Nov 22 '18 at 17:40
1
Why is my variable unaltered after I modify it inside of a function? - Asynchronous code reference
– Andreas
Nov 22 '18 at 17:44
@Andres you are correct. It turns out that the assignment of a new value for questions was taking place after console.info was called.
– Boris Layvant
Nov 22 '18 at 18:05
add a comment |
The fact that the object shows as{}
and afterwards has elements tells you that the questions only exist after you log them in the console. Hence the how and when the "questions" are generated/assigned does matter.
– Andreas
Nov 22 '18 at 17:36
Interesting...the second line is part of the same console.info output so how can they only exist after they're logged?
– Boris Layvant
Nov 22 '18 at 17:40
1
Why is my variable unaltered after I modify it inside of a function? - Asynchronous code reference
– Andreas
Nov 22 '18 at 17:44
@Andres you are correct. It turns out that the assignment of a new value for questions was taking place after console.info was called.
– Boris Layvant
Nov 22 '18 at 18:05
The fact that the object shows as
{}
and afterwards has elements tells you that the questions only exist after you log them in the console. Hence the how and when the "questions" are generated/assigned does matter.– Andreas
Nov 22 '18 at 17:36
The fact that the object shows as
{}
and afterwards has elements tells you that the questions only exist after you log them in the console. Hence the how and when the "questions" are generated/assigned does matter.– Andreas
Nov 22 '18 at 17:36
Interesting...the second line is part of the same console.info output so how can they only exist after they're logged?
– Boris Layvant
Nov 22 '18 at 17:40
Interesting...the second line is part of the same console.info output so how can they only exist after they're logged?
– Boris Layvant
Nov 22 '18 at 17:40
1
1
Why is my variable unaltered after I modify it inside of a function? - Asynchronous code reference
– Andreas
Nov 22 '18 at 17:44
Why is my variable unaltered after I modify it inside of a function? - Asynchronous code reference
– Andreas
Nov 22 '18 at 17:44
@Andres you are correct. It turns out that the assignment of a new value for questions was taking place after console.info was called.
– Boris Layvant
Nov 22 '18 at 18:05
@Andres you are correct. It turns out that the assignment of a new value for questions was taking place after console.info was called.
– Boris Layvant
Nov 22 '18 at 18:05
add a comment |
1 Answer
1
active
oldest
votes
As @Andreas pointed out, the console output was being performed before the assignment of a new value to "questions" was completed.
As a side-note, my confusion was exacerbated by the presence of properties below the empty object in the console output, which are apparently somehow appended after the fact.
You should hover over the blue bloxedi
.
– Felix Kling
Nov 22 '18 at 19:33
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%2f53435852%2fobject-keys-returns-an-empty-array-for-an-object-containing-properties%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
As @Andreas pointed out, the console output was being performed before the assignment of a new value to "questions" was completed.
As a side-note, my confusion was exacerbated by the presence of properties below the empty object in the console output, which are apparently somehow appended after the fact.
You should hover over the blue bloxedi
.
– Felix Kling
Nov 22 '18 at 19:33
add a comment |
As @Andreas pointed out, the console output was being performed before the assignment of a new value to "questions" was completed.
As a side-note, my confusion was exacerbated by the presence of properties below the empty object in the console output, which are apparently somehow appended after the fact.
You should hover over the blue bloxedi
.
– Felix Kling
Nov 22 '18 at 19:33
add a comment |
As @Andreas pointed out, the console output was being performed before the assignment of a new value to "questions" was completed.
As a side-note, my confusion was exacerbated by the presence of properties below the empty object in the console output, which are apparently somehow appended after the fact.
As @Andreas pointed out, the console output was being performed before the assignment of a new value to "questions" was completed.
As a side-note, my confusion was exacerbated by the presence of properties below the empty object in the console output, which are apparently somehow appended after the fact.
answered Nov 22 '18 at 18:15
Boris LayvantBoris Layvant
287
287
You should hover over the blue bloxedi
.
– Felix Kling
Nov 22 '18 at 19:33
add a comment |
You should hover over the blue bloxedi
.
– Felix Kling
Nov 22 '18 at 19:33
You should hover over the blue bloxed
i
.– Felix Kling
Nov 22 '18 at 19:33
You should hover over the blue bloxed
i
.– Felix Kling
Nov 22 '18 at 19:33
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%2f53435852%2fobject-keys-returns-an-empty-array-for-an-object-containing-properties%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
The fact that the object shows as
{}
and afterwards has elements tells you that the questions only exist after you log them in the console. Hence the how and when the "questions" are generated/assigned does matter.– Andreas
Nov 22 '18 at 17:36
Interesting...the second line is part of the same console.info output so how can they only exist after they're logged?
– Boris Layvant
Nov 22 '18 at 17:40
1
Why is my variable unaltered after I modify it inside of a function? - Asynchronous code reference
– Andreas
Nov 22 '18 at 17:44
@Andres you are correct. It turns out that the assignment of a new value for questions was taking place after console.info was called.
– Boris Layvant
Nov 22 '18 at 18:05