字元串首字母大寫函數擴展 String.prototype.toJadenCase = function () { return this.split(' ').map(function(value, index) { let arr = value.split(''); let val = val ...
字元串首字母大寫函數擴展
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(' ');
};