如何从数组中获取最后一个值?

How to get the last value from an Array?

提问人:Anup Dhal 提问时间:9/20/2017 最后编辑:Vaibhav MuleAnup Dhal 更新时间:9/20/2017 访问量:56

问:

就我而言,我有以下数组:

$array = [[01], [01,02], [01,02,03], [01,02,03,04], [01,02,03,04,05], [01,02,03,04,05,06]];

因此,从上面的数组中,我只需要最后一个数组,其中包含

[01,02,03,04,05,06]
JavaScript 数组

评论

0赞 CBroe 9/20/2017
你不觉得你想要什么语言的信息可能有点重要吗......?请阅读实际的标签说明! 根本不适合这里。get
0赞 Anup Dhal 9/20/2017
实际上这是在JS中。
0赞 Alex K. 9/20/2017
last = arr[arr.length - 1];或者,这也将从 中删除最后一个。last = arr.pop();arr
0赞 CBroe 9/20/2017
在谷歌中输入“javascript get last array item”或类似内容有多难......?stackoverflow.com/questions/3216013/......

答:

1赞 Brr Switch 9/20/2017 #1

为了让您了解它是如何完成的,我正在使用 JS 编写此答案

var myArray = [[01], [01,02], [01,02,03], [01,02,03,04], [01,02,03,04,05], [01,02,03,04,05,06]]

var lastElement = myArray[myArray.length - 1]

console.log(lastElement)