JS フレームワークStapes.jsで親子リンクを作成しようとしています。
これが私のコードです:
var Parent = Stapes.subclass({
constructor: function () {
this.name = 'syl';
}
});
var Child = Parent.subclass({
constructor: function (value) {
this.value = value;
console.log(this.name); // undefined
}
});
var child = new Child('a value');
ここでフィドル。
子クラスから親の name プロパティにアクセスするには?