字符串函数扩展
Posted 代码恶童
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串函数扩展相关的知识,希望对你有一定的参考价值。
String.prototype.toJadenCase = function () {
return this.split(\' \').map(function(value, index) {
let arr = value.split(\'\');
let val = value[0].toUpperCase() + value.slice(1);
return val;
}).join(\' \');
};
本文转载自:http://www.cnblogs.com/Uncle-Keith/p/6230918.html
以上是关于字符串函数扩展的主要内容,如果未能解决你的问题,请参考以下文章