JSFiddle - React, Tailwind, and code Playground

by Vasilii Chugunov

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();