This a common example for JScript(ECMA262) to create a class with defined constructor. The constructor can be parameteries to accent a/multiple parameter.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Jscript */ | |
/* Class in JavaScript */ | |
var ClassName = (function () { | |
// Constructor | |
function ClassName(message) { | |
this.variable1 = message; | |
} | |
// Method | |
ClassName.prototype.Greeting = function () { | |
return "Hello, " + this.variable1; | |
}; | |
return ClassName; | |
})(); | |
/* Once a class is created we can define multiple instance of it and use it to called the defined method.*/ | |
// this creates an instance of class and assigns it to greeter. | |
var g1 = new ClassName("world"); | |
//this calls the greet function | |
g1.Greeting(); |