在 javascript 数组中,如何获取最后 5 个元素,不包括第一个元素? [英] In a javascript array, how do I get the last 5 elements, excluding the first element?

查看:59
本文介绍了在 javascript 数组中,如何获取最后 5 个元素,不包括第一个元素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

[1, 55, 77, 88] // ...would return [55, 77, 88]

<小时>

添加其他示例:

[1, 55, 77, 88, 99, 22, 33, 44] // ...would return [88, 99, 22, 33, 44]

[1] // ...would return []

推荐答案

您可以致电:

arr.slice(Math.max(arr.length - 5, 1))

如果不想排除第一个元素,请使用

If you don't want to exclude the first element, use

arr.slice(Math.max(arr.length - 5, 0))

这篇关于在 javascript 数组中,如何获取最后 5 个元素,不包括第一个元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆