说我有一个清单:
[0,1,2,3,4,5,6,7,8,9]
从这个列表中我想要检索位置4,5和6的中心元素。所以:[4,5,6]
是我想要的输出。
我知道如何删除元素,使用此方法很容易:
x = [position1:] + [:position2]
但我不知道如何找到这些物品。
答案 0 :(得分:1)
使用 slice :
class Parent {
init() {
console.log("Parent init");
this._surname = "McClass";
}
constructor() {
console.log("Parent constructor");
Parent.prototype.init.call(this);
}
get surname() {
return this._surname;
}
}
class Child extends Parent {
init() {
console.log("Child init");
}
constructor() {
super();
console.log("Child constructor");
this.init();
}
}
var child = new Child();