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
TS Playground set log console
Playground link with relevant code
console.log(new Set().add("hello!")); console.log({ s: new Set().add("hello!") })
Clicked "Run", then got this result:
[LOG]: Set (1) {"hello!"} [LOG]: { "s": {} }
Should print out:
[LOG]: Set (1) {"hello!"} [LOG]: {s: Set(1)}
or maybe something like this:
[LOG]: Set (1) {"hello!"} [LOG]: {s: Set (1) {"hello!"}}
Chrome DevTools shows this:
The text was updated successfully, but these errors were encountered:
I wonder if this belongs in microsoft/TypeScript-Website instead of here? Although given microsoft/TypeScript-Website#2804 I'm not sure if it would be appropriate there either.
Sorry, something went wrong.
It definitely not for this issue tracker.
Since it's not critical, we wouldn't keep such an issue open, but a PR would be welcome.
This issue has been marked as 'External' and has seen no recent activity. It has been automatically closed for house-keeping purposes.
No branches or pull requests
Bug Report
π Search Terms
TS Playground set log console
π Version & Regression Information
β― Playground Link
Playground link with relevant code
π» Code
π Actual behavior
Clicked "Run", then got this result:
π Expected behavior
Should print out:
or maybe something like this:
Chrome DevTools shows this:
The text was updated successfully, but these errors were encountered: