Class in ES5

–JS File

var Greet = (function(){
	function Greet(message){
		this.message = message;
    }
	Greet.prototype.greet = function(){
		return "Hello " + this.message;
    }
})();

var great = new Greeter("world")

great.greet()

Leave a Reply

Your email address will not be published. Required fields are marked *