JSFiddle - React, Tailwind, and code Playground
JavaScript
class Bird {
constructor(x, y) {
this.x = x;
this.y = y;
}
getCoords() {
alert('x: ' + this.x + '; y: ' + this.y);
}
}
let bird = new Bird(5, 7);
bird.getCoords();
class Bird {
constructor(x, y) {
this.x = x;
this.y = y;
}
getCoords() {
alert('x: ' + this.x + '; y: ' + this.y);
}
}
let bird = new Bird(5, 7);
bird.getCoords();