Advertisement
otkalce

MVC View Creation - JS

Apr 17th, 2023
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.10 KB | Source Code | 0 0
  1. function capitalCase(str) {
  2.     return `${str.charAt(0).toUpperCase()}${str.slice(1).toLowerCase()}`;
  3. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement