神岛 API 文档 - ArenaPro版
    Preparing search index...

    Interface IArguments

    表示函数参数的对象。

    Represents the arguments object of a function.

    interface IArguments {
        callee: Function;
        length: number;
        "[iterator]"(): ArrayIterator<any>;
        "[iterator]"(): IterableIterator<any>;
    }
    Index

    Properties

    Methods

    Properties

    callee: Function

    当前执行的函数。

    The currently executing function.

    length: number

    参数的长度。

    The length of the arguments.

    Methods