如何挂接新字符串实例的每个创建?



是否可以挂钩每个新String的创建? 每次运行这样的代码:

const new_string = 'Hello World!';

我想得到通知;例如;

console.log('A new String was created:', whatever_new_string_was_created);

字符串是没有关联事件的原语,构造函数无法更改其方法:https://tc39.es/ecma262/#sec-string-objects

相关内容

  • 没有找到相关文章

最新更新