提问人:Ooker 提问时间:9/7/2023 更新时间:9/7/2023 访问量:20
为什么使用方法定义新方法不起作用?[已结束]
Why does using a method to define a new method not work? [closed]
问:
我不知道为什么这段代码不起作用。你有什么想法吗?
String.prototype.splitb = function () {
this.split('b')
}
console.log('aba'.splitb()) \\❌
console.log('aba'.split('b')) \\✅
答:
1赞
Alexander Nenashev
9/7/2023
#1
您应该从您的方法返回:
String.prototype.splitb = function () {
return this.split('b')
}
console.log('aba'.splitb())
console.log('aba'.split('b'))
评论
return