标签: javascript node.js babeljs minify console.log
Foo.js:
export class Foo { name: string; constructor(name: string) { this.name = name; } }
在测试文件中,我做了一个简单的console.log(new Foo("test"));,它的输出是:a { name: 'test' }
console.log(new Foo("test"));
a { name: 'test' }
我猜测a可能表示any类型(我确实安装了流程),但不确定。
a
any
使用: