-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Project JavaScript Global Objects & Methods #22
Labels
Comments
Project Taman Safari |
Project People Data |
Transform to Title Caseconst transformToTitleCase = text => {
let textArray = text.split(' ')
const titleCasedTextArray = textArray.map(text => {
const titleCasedLetter = text.charAt(0).toUpperCase()
return titleCasedLetter + text.slice(1)
})
return titleCasedTextArray.join(' ')
} const transformToTitleCase = text =>
text
.split(' ')
.map(text => text.charAt(0).toUpperCase() + text.slice(1))
.join(' ')
console.log(transformToTitleCase('nurhadi aldo presiden')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: