0
當試圖實例化MyClass()
s時,出現以下錯誤。TypeError:'undefined'不是一個函數(評估'_class.apply(this,arguments)')
s = new MyClass();
> TypeError: 'undefined' is not a function (evaluating '_class.apply(this, arguments)')
的是類
class MyClass
constructor: (@value = 'defaultValue')
….
任何想法是什麼原因造成這個錯誤?