列表

详情


FED47. 函数——参数对象

描述

请补全JavaScript函数,要求返回它的参数伪数组对象。

原站题解

HTML/CSS/JavaScript 解法, 执行用时: 1738ms, 内存消耗: 77784KB, 提交时间: 2022-01-02

{"css":"","js":"function getArguments (a,b,c) {\n    // 补充代码\n    return getArguments.arguments\n}","html":"","libs":[]}

HTML/CSS/JavaScript 解法, 执行用时: 1741ms, 内存消耗: 77776KB, 提交时间: 2022-01-04

{"css":"","js":"function getArguments (a,b,c) {\n    // 补充代码\n    return arguments;\n\n}","html":"","libs":[]}

HTML/CSS/JavaScript 解法, 执行用时: 1744ms, 内存消耗: 77780KB, 提交时间: 2022-01-22

{"css":"","js":"function getArguments (a,b,c) {\n    // 补充代码\n    return {'0': a, '1': b, '2':c, length:3};\n}","html":"","libs":[]}

HTML/CSS/JavaScript 解法, 执行用时: 1746ms, 内存消耗: 77772KB, 提交时间: 2021-12-20

{"css":"","js":"function getArguments (a,b,c) {\n    // 补充代码\n    return    arguments\n}","html":"","libs":[]}

HTML/CSS/JavaScript 解法, 执行用时: 1746ms, 内存消耗: 77792KB, 提交时间: 2021-12-08

{"css":"","js":"function getArguments (a,b,c) {\n    // 补充代码\n    return arguments;//arguments是所有(非箭头)函数中都可用的局部变量\n}","html":"","libs":[]}

上一题