配置 完成以后 總報錯:use space not tabs? 還有 要求使用 use 'strict', 我加上以后依舊提示 錯誤。
use 'strict'
function Student(name) {
this.name = name;
return this;
}
Student.prototype.addMsg = function(arg1) {
?this.arg1 = arg1;
};
use 'strict'
function Student(name) {
this.name = name;
return this;
}
Student.prototype.addMsg = function(arg1) {
?this.arg1 = arg1;
};
2015-03-12
舉報
2016-02-26
在菜單欄view-intendation 或者右下角 可以切換 使用tabs 還是 space 進行縮進。