Follow me Instagram.
Note: God is good!
This is a Next.js project bootstrapped with create-next-app
.
First, run the development server:
yarn dev
Open http://localhost:3000 with your browser to see the result.
- Capitalize multiple words:
stringName.replace(/\w\S*/g, (w) => (w.replace(/^\w/, (c) => c.toUpperCase())));