class Person{
constuctor(name){
this.name = name;
}
speak(){
alert('My name is ' + this.name);
}
}
var james = new Person('james');
james.speak();
我想了解一些節點的ES6類的東西。 我發現每個例子都說這應該
對於es6我很新。以下是我的簡單Student類與接受2個參數的構造函數。我通過在構造函數簽名本身中調用函數來分配默認值,當參數未被傳遞時。 index.js:9Uncaught TypeError: this.defaultRno is not a function
at new Student (index.js:9)
at Object.<anonymous> (inde
我想弄清楚這裏發生了什麼,因爲父類/超類在初始構建後沒有數據。 //進口/服務器/一 - 和 - b.js class A {
constructor(id) {
// make MongoDB call and store inside this variable
// ...
this._LocalVariable = FieldFromMongo;
我想使用ES6解構一個類的構造函數,但得到一個未知的令牌錯誤。這裏有一個例子: //進口/服務器/ A-和b.js class A {
constructor(id) {
// make MongoDB call and store inside this variable
let {
firstName: this._FirstName // => Th