You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The details of an object in console (with ">Object" pin ) when using console.log(myObject) are not correctly displayed.
When opening the pin, the displayed properties and keys corresponds to last available state of the object, not the state of the object in the time of console.log.
main idea
let x = {a: 1, b: 2, c: 3, d: 4, e: 5};
console.log(x); // when unpinning, should be {a: 1, b: 2, c: 3, d: 4, e: 5}, no z!
x.z = 2000
console.log(x); // only now z should appear
Bug Report
Host: EXCEL
OS: Windows 10
Browser: -
Environment: prod
Expected behavior:
as described in comments
Actual behavior:
Steps to Reproduce:
open a script in Excel, and do in the main function:
let x = {a: 1, b: 2, c: 3, d: 4, e: 5};
console.log(x); // when unpinning, should be {a: 1, b: 2, c: 3, d: 4, e: 5}, no z!
x.z = 2000
console.log(x); // only now z should appear
Screenshot:
The text was updated successfully, but these errors were encountered:
wandyezj
changed the title
console object is not correcly displayed
console object is not correctly displayed
Apr 9, 2024
The details of an object in console (with ">Object" pin ) when using
console.log(myObject)
are not correctly displayed.When opening the pin, the displayed properties and keys corresponds to last available state of the object, not the state of the object in the time of console.log.
main idea
Bug Report
Expected behavior:
as described in comments
Actual behavior:
Steps to Reproduce:
open a script in Excel, and do in the main function:
Screenshot:
The text was updated successfully, but these errors were encountered: