Function log

  • 在页面上打印数据,我们打包通常会设置清除 console,使用此函数打印关键信息就不会被清除啦。

    Parameters

    • Rest...args: any[]

      打印数据 rest 参数

    Returns string

    log([1, 2, 2, 3, 3], {a: 1, b: 2}, 'test', true); /// 打印数据
    log('danger'); /// 打印数据