JSFiddle - React, Tailwind, and code Playground
by praveenti
JavaScript
function Employee () {}
Employee.prototype.firstName = "Abhijit";
Employee.prototype.lastName = "Patel";
Employee.prototype.startDate = new Date();
Employee.prototype.signedNDA = true;
Employee.prototype.fullName = function () {
console.log (this.firstName + " " + this.lastName);
};
var abhijit = new Employee ();
alert(abhijit.fullName());
console.log(abhijit.signedNDA);