hw06_24.html 384 B

12345678910111213141516
  1. <header>
  2. <h1>Map Capitalize</h1>
  3. </header>
  4. <body>
  5. <script>
  6. const capitalize = str => {
  7. str = str.toLowerCase();
  8. let result = str[0].toUpperCase() + str.slice(1);
  9. return result;
  10. }
  11. let phrase = prompt("Enter a phrase").trim().split(' ').map(w => capitalize(w)).join(' ');
  12. alert(phrase);
  13. </script>
  14. </body>