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