在python中,我可以扩展列表类型并直接访问底层数据(通过使用类'数据变量),如果我想要完全重置它:
import collections
class myList(collections.UserList):
def sort(self):
self.data = sorted(self.data, key=operator.itemgetter('mySortKey'))
如何在javascript中实现此目的?
class myList extends Array {
sort(){
this = this.slice().sort( compareFunc_mySortKey ); // This doesn't appear to work
}
}