Skip to content
我的前端知识学习笔记
Main Navigation
Web 开发基础知识
JavaScript 函数式编程
数据结构与算法
JavaScript 设计模式
小记 / 博客
Appearance
Menu
Return to top
On this page
Table of Contents for current page
Tail 函数
给定一个数组,返回所有除第一个元素之外的剩余元素。
Code
javascript
function
tail
(
array
) {
return
array.
slice
(
1
);
}