hw06_23.html 306 B

123456789101112131415
  1. <header>
  2. <h1>Function 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. alert(capitalize("cANBerRa"));
  12. </script>
  13. </body>