在Javascript中引用数组的最后一个元素?

时间:2013-03-28 02:06:08

标签: javascript

在我的代码中,我有很多这样的代码:

my_array[my_array.length - 1] = sth;

是否可以定义一个简单的变量来指向数组的最后一个元素?如下所示:

var ref =  (&|*, sth like that) my_array[my_array.length - 1];
ref = sth;

1 个答案:

答案 0 :(得分:5)

您必须更改数组原型,并使用如下所示:

var arr = ['a','b','c'];

Array.prototype.last=function() {
    if(this.length >= 1) {
        return this[this.length - 1];
    }
    else {
        return null;
    }
};

arr.last();

Shuold工作 - 您可以在Chrome JS控制台中查看它。