原生JS-数组扩展
2021-01-23 14:13
阅读:705
标签:class array ret res prototype 通过 value color js对象 在原生JS里,我们可以对数组[]进行处理,但是远程的数组对象里支持的方法没有后台那么丰富,那么我们是可以通过js对象的扩展方法对数组进行扩展的。 原生JS-数组扩展 标签:class array ret res prototype 通过 value color js对象 原文地址:https://www.cnblogs.com/lxhbky/p/12884222.html
//数组扩展
window.Array.prototype.lastValue=function(){
var result="";
var l=this.length;
if(l>0){
result=this[l-1];
}
return result;
};
评论
亲,登录后才可以留言!