processing / p5.js

p5.js is a client-side JS platform that empowers artists, designers, students, and anyone to learn to code and express themselves creatively on the web. It is based on the core principles of Processing. http://twitter.com/p5xjs —
http://p5js.org/
GNU Lesser General Public License v2.1
21.11k stars 3.22k forks source link

The constructor of `p5.Table` doesn't handle the optional parameter `rows` #7002

Closed IronBlood closed 1 month ago

IronBlood commented 2 months ago

Most appropriate sub-area of p5.js?

p5.js version

No response

Web browser and version

No response

Operating system

No response

Steps to reproduce this

The code snippet is below, this feature/bug seems like introduced 10 years ago from 08f856929839e43ded3431904c875db197cb5b92

p5.Table = class {
  constructor(rows) {
    this.columns = [];
    this.rows = [];
  }
}