以这个“StartsWith”扩展为例:
if (typeof String.prototype.startsWith != 'function') {
String.prototype.startsWith = function (str) {
return this.slice(0, str.length) == str;
};
}
如果我正在编写一个 Web 应用程序,我会将该代码粘贴到ExtensionMethods.js
我在我网站内的网页上导入的页面中。
但是在带有 Node.js的服务器上使用它的情况呢?
谢谢!