Writing Classes

Learning from AstroPlatformer

Code Runner Challenge

writing-classes

View IPYNB Source
%%js
// CODE_RUNNER: writing-classes

class Platform {
  constructor(id, x, y) {
    this.id = id; this.x = x; this.y = y;
  }
  update() {
    console.log("Platform", this.id);
  }
}
const p = new Platform("p1", 40, 290);
p.update();

Lines: 1 Characters: 0
Output
Click "Run" in code control panel to see output ...