gpt4 book ai didi

javascript - 在不兼容的接收器上调用方法 RegExp.prototype.exec

转载 作者:行者123 更新时间:2023-12-03 04:40:27 25 4
gpt4 key购买 nike

最近,我在使用 RegExp.prototype 时遇到了麻烦。正常情况下, RegExp.prototype 是一个空的正则表达式,但是,我尝试在 console 中使用 RegExp.prototype.test('') ,它会出错。为什么会显示错误

image with error

最佳答案

console.log(RegExp.prototype.test.toString());
//RegExp.prototype.test is a native function
//if you want call this function,you should new a Regexp
console.log(new RegExp(/^$/).test(''));

关于javascript - 在不兼容的接收器上调用方法 RegExp.prototype.exec,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43112533/

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