JSFiddle - React, Tailwind, and code Playground

by dmitri_pavlutin

JavaScript

class Star {
  constructor(name) {
    this.name = name;
  }
  getMessage(message) {
    return this.name + message;
  }
}

const sun = new Star('Sun');
console.log(sun.getMessage(' is shining')); // => 'Sun is shining'