JSFiddle - React, Tailwind, and code Playground

JavaScript

function Developer(skill) {
    this.skill = skill;
    this.says = function() {
        alert(this.skill + ' rocks!');
    }
}
var john = new Developer('Ruby');
john.says();