'string0'.Prefix('string1') === 'string2'
我遇到了一个前缀运算符,但我找不到任何关于如何在网络上任何地方使用它的文档 - 这一切都被前缀和后缀运算符所覆盖
有人知道吗?
它甚至存在吗?
答案 0 :(得分:1)
有人可能会在您要检查的代码中创建类似以下内容的内容。
String.prototype.Prefix = function(anotherStr) {
return anotherStr + this;
}
var name = "Jean";
var sentence = "Hi there, ";
alert(name.Prefix(sentence));

查看此链接,了解有关javascript中prototypes
的更多信息
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/prototype
注意:请记住,扩展本机类型不被视为最佳实践