prototype method in es6 code example
Example 1: javascript prototype explained
function Student() {
this.name = 'John';
this.gender = 'M';
}
Student.prototype.age = 15;
var studObj1 = new Student();
alert(studObj1.age);
var studObj2 = new Student();
alert(studObj2.age);
Example 2: javascript prototype vs constructor function
function Class () {}
Class.prototype.calc = function (a, b) {
return a + b;
}
var ins1 = new Class(),
ins2 = new Class();
console.log(ins1.calc(1,1), ins2.calc(1,1));
Class.prototype.calc = function () {
var args = Array.prototype.slice.apply(arguments),
res = 0, c;
while (c = args.shift())
res += c;
return res;
}
console.log(ins1.calc(1,1,1), ins2.calc(1,1,1));