📅  最后修改于: 2022-03-11 15:02:24.760000             🧑  作者: Mango
/* String prototype all built-in methods:
* developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
* -------------------------------------------------------------------------
*/
// Example for *extending* the String prototype
String.prototype.reduce = function () {
return this.split().reduce(...arguments);
}