0

Command Executed :

  arguments.toSource();

I am getting the below error when I am accessing the arguments in any function to display the arguments.

  TypeError: Object #<Object> has no method 'toSource'

Is arguments is array or not ?


arguments is array-like, but not a full JavaScript Array.

It has no toSource method; see the docs.

4

1 回答 1

1

arguments类似于数组,但不是完整的 JavaScript Array

它没有toSource方法;请参阅文档

于 2012-11-05T13:33:02.033 回答