We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
path: js-property-question
function getObject() {} function getKey() {} let obj = getObject(); let key = getKey(); let valueA = obj[key]; let valueB = 3; obj[key] = valueB let valueC = obj[key]; assert(isNaN(valueA)); // false assert(isNaN(valueC)); // false assert(valueA === valueB); // false assert(valueB === valueC); // false assert(valueA === valueC); // false
The text was updated successfully, but these errors were encountered:
function getObject() { return localStorage; } function getKey() { return 'length'; }
Sorry, something went wrong.
No branches or pull requests
path: js-property-question
The text was updated successfully, but these errors were encountered: