gpt4 book ai didi

javascript - 在 Node 中通过 Prototype 访问变量的值

转载 作者:行者123 更新时间:2023-11-30 09:15:41 26 4
gpt4 key购买 nike

我想使用定义的原型(prototype)来访问变量的值,但我不知道如何通过这样做来获取值。我搜索了很多示例,但没有找到合适的解决方案。

为了清楚理解这里是示例。

String.prototype._ = console.log(this);
const a = '10';
a._;

这很简单,我没有得到a中定义的正确值。您的帮助将不胜感激。

最佳答案

如果我没理解错的话,你想要原型(prototype)上的 getter:

Object.defineProperty(String.prototype, "_", {
get() {
console.log(this);
}
});

"It works"._; // logs into the console

关于javascript - 在 Node 中通过 Prototype 访问变量的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55250690/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com