- <header>
- <h1>Map Capitalize</h1>
- </header>
- <body>
- <script>
- const capitalize = str => {
- str = str.toLowerCase();
- let result = str[0].toUpperCase() + str.slice(1);
- return result;
- }
- let phrase = prompt("Enter a phrase").trim().split(' ').map(w => capitalize(w)).join(' ');
- alert(phrase);
- </script>
- </body>
|