function initCap(str) {
if (str) {
return str.toLowerCase().replace(/(?:^|\s)[a-z]/g, function (m) {
return m.toUpperCase();
});
}
return "";
};
if (str) {
return str.toLowerCase().replace(/(?:^|\s)[a-z]/g, function (m) {
return m.toUpperCase();
});
}
return "";
};
No comments:
Post a Comment