1 Star 1 Fork 5

lv_xx/gao-web_1

forked from shuiruohanyu/gao-web 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
25_函数的参数用法.html 692 Bytes
一键复制 编辑 原始数据 按行查看 历史
shuiruohanyu 提交于 2024-12-08 15:00 . 数组的方法和处理
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>25_函数的参数用法</title>
</head>
<body>
<script>
function test (a,b,c,...args) {
console.log(args)
// let a = arguments // a类数组
// console.log(Array.from(a))
// call/apply 改变this指向的方法
// class extends
//
// console.log(Array.prototype.slice.call(a))
// console.log(Array.prototype.slice.apply(a))
// console.log([...a])
}
const test1 = () => {
}
test(1,2,3,4,5,6,7,8,9,10)
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lv_xx/gao-web_1.git
git@gitee.com:lv_xx/gao-web_1.git
lv_xx
gao-web_1
gao-web_1
main

搜索帮助