我从这里获取此功能:smart way to shorten long strings with javascript
String.prototype.trunc = String.prototype.trunc ||
function(n){
return (this.length > n) ? this.substr(0, n-1) + '…' : this;
};
var randNumb = Math.floor((Math.random() * 100000000000000000));
randNumb = randNumb.toString();
randNumb = randNumb.trunc(16);
今天当我尝试使用我的网页时出现以下错误:
Uncaught (in promise) TypeError: randNumb.trunc is not a function
at main (displayData.js:53)
at HTMLButtonElement.onclick ((index):1)
昨天工作正常,从那以后我没有改变这部分代码。 有谁知道发生了什么事?
编辑: 我发现了问题......我显然改变了一些没有意义的代码。无论如何,谢谢你的帮助。