假设我有这门课.
class Attribute {
constructor(name) {
this.name = name;
}
}
Run Code Online (Sandbox Code Playgroud)
我创建一个实例并将其记录到控制台以进行调试.
const test = new Attribute('Large');
console.log(test);
Run Code Online (Sandbox Code Playgroud)
如何让它输出特殊格式的字符串,比如{Attribute} Large?我主要关注Chrome支持,但Node和其他浏览器也不错.