fork(1) download
  1. class Tardis {
  2. constructor(color) {
  3. this.name = "TARDIS";
  4. this.color = color;
  5. }
  6.  
  7. travel(time) {
  8. return `${this.name} летить у ${time} рік!`;
  9. }
  10. }
  11.  
  12. const myTardis = new Tardis("Blue");
  13. console.log(myTardis.travel(2026));
Success #stdin #stdout 0.05s 18248KB
stdin
Standard input is empty
stdout
TARDIS летить у 2026 рік!