Skip to content
New issue

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

Counsel does not show accurate logs #403

Open
SaravananRamanathan opened this issue Nov 16, 2023 · 1 comment
Open

Counsel does not show accurate logs #403

SaravananRamanathan opened this issue Nov 16, 2023 · 1 comment

Comments

@SaravananRamanathan
Copy link

Snippet to recreate the issue:

const friends = ['one', 'two', 'three']
const newLength = friends.push('four');
console.log(friends)

friends.unshift('zero')
console.log(friends)

friends[friends.length] = 'five'
console.log(friends)

for the above snippet, the expected log is (and this is the displayed correct in the Firefox dev counsel): Screenshot 2023-11-16 at 10 43 01 AM

Eruda, counsel displays the log as following: Screenshot 2023-11-16 at 10 44 27 AM

it seems to show the latest `friends` array value for all 3 logs

@Mazedotexe
Copy link

Wow, what an interesting bug! I wonder what causes this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants