JS类定义原型方法的两种实现的区别

    我们知道,给JavaScript类添加原形(prototype)方法是很简单的。而且常用的有下面这两种方法,可是这两种方法在使用时有区别吗?

    JScript Class:
 function  JSClass()
 {
   
 }

    Extends prototype method:
 JSClass.prototype.MethodA = function ()
 {

 };

    Or

 
function = JSClass.prototype.MethodA()
 {

 };

你可能感兴趣的:(js)