ccanaria
6/19/2016 - 12:29 PM

ECMA 6 JavaSCript Class Template

ECMA 6 JavaSCript Class Template

class Shape {
    constructor (id, x, y) {
        this.id = id;
        this.move(x, y);
    }
    move (x, y) {
        this.x = x;
        this.y = y;
    }
}