Open
Description
Most appropriate sub-area of p5.js?
- Accessibility
- Color
- Core/Environment/Rendering
- Data
- DOM
- Events
- Image
- IO
- Math
- Typography
- Utilities
- WebGL
- Build Process
- Unit Testing
- Internalization
- Friendly Errors
- Other (specify if possible)
p5.js version
1.5.0
Web browser and version
Brave: 1.47.186 Chromium: 109.0.5414.119
Operating System
Windows 11 Version 21H2 (Build 22000.1455)
Steps to reproduce this
Steps:
- Create a set from an array
- or add a value
- print the set
Snippet:
function setup() {
const a = new Set([10]);
print(a);
}