标签:对象 一个 type typeof cti argument func nbsp string
JavaScript中的函数有一个内置对象 arguments,arguments类似于一个数组,包含了调用函数时传入的参数。
function f(a, b, c) { for (let i = 0; i < arguments.length; i++) { console.log(arguments[i]); } } f(1, 2, 3); /* 输出如下: 1 2 3 */
JavaScript函数还有一个 toString() 方法,该方法将函数作为一个字符串返回。
function f(){ console.log("How are you?"); } console.log(typeof f.toString()); console.log(f.toString());
/* 输出如下: string function f(){ console.log("How are you?"); } */
标签:对象 一个 type typeof cti argument func nbsp string
原文地址:https://www.cnblogs.com/huwt/p/10703334.html