17
Apr

working with Javascript class

Following code snippet demonstrates usage of class in JavaScript: —————————————————————– var MyClass = function() { this.name = ‘Shinchan’; this.type = ‘cartoon’; }; MyClass.prototype.setName = function(name) { this.name = name;...

Read More