const firstUpperCase = (str) => {
return str.toLowerCase().replace(/( |^)[a-z]/g, (L) => L.toUpperCase());
};
12-13
1588

08-04
764

const firstUpperCase = (str) => {
return str.toLowerCase().replace(/( |^)[a-z]/g, (L) => L.toUpperCase());
};