服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.dropRight(array, n=1)

创建从最后开始使用n删除元素的一部分array

初始

3.0.0

参数
  1. array (Array):要查询的数组。
  2. [n=1] (数字):要删除的元素数量。
返回

(数组):返回一部分array

示例
_.dropRight([1, 2, 3]);
// => [1, 2]
 
_.dropRight([1, 2, 3], 2);
// => [1]
 
_.dropRight([1, 2, 3], 5);
// => []
 
_.dropRight([1, 2, 3], 0);
// => [1, 2, 3]