JSFiddle - React, Tailwind, and code Playground

by Mariya_Korotkova

TypeScript

const human = {
 firstName: 'Старец',
 age: 32,
 height: 185,
 greet: function(){
  console.log(`Приветствую тебя`)
 }
};

human.greet();