答案是1
其实弄清楚3个知识点,就能理解了
1. 234['toString'] 其实就是234.toString()
2. 对于Number toString() 方法可把一个 Number 对象转换为一个字符串,并返回结果。
NumberObject.toString(radix)
radix 可选。规定表示数字的基数,使 2 ~ 36 之间的整数。若省略该参数,则使用基数 10。但是要注意,如果该参数是 10 以外的其他值,则 ECMAScript 标准允许实现返回任意值。
3.
function.length代表函数定义的参数个数
function.arguments.length函数实际传递的参数个数
如下:
function recursive10to2Int(n)
{
window.alert(recursive10to2Int.length);
window.alert(recursive10to2Int.arguments.length);
}
recursive10to2Int();
recursive10to2Int(1);
recursive10to2Int(1,2);