class CTest extends Array {
get top() {
return this[this.length - 1];
}
}
var obj = new CTest();
obj.push('javascript');
obj.push('c++');
obj.push('node.js');
console.log(obj.top);
console.log(obj.length);
console.log(obj);
/*
run:
node.js
3
CTest(3) [ 'javascript', 'c++', 'node.js' ]
*/