Search

How to define a class in JScript ?

This a common example for JScript(ECMA262) to create a class with defined constructor. The constructor can be parameteries to accent a/multiple parameter.

/* 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();