mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-05-18 12:02:53 +02:00
✨ Add "camel-case" challenge
This commit is contained in:
0
challenges/camel-case/solutions/.gitkeep
Normal file
0
challenges/camel-case/solutions/.gitkeep
Normal file
@ -0,0 +1,4 @@
|
||||
# typescript-camelcase - camel-case
|
||||
|
||||
Programming language : TypeScript
|
||||
Created by [@Divlo](https://github.com/Divlo) at 5 July 2020.
|
@ -0,0 +1,14 @@
|
||||
function solution (string: string) {
|
||||
return string.length === 0
|
||||
? ''
|
||||
: string
|
||||
.trim()
|
||||
.split(' ')
|
||||
.map((word, index) => {
|
||||
if (index === 0) return word
|
||||
return word[0].toUpperCase() + word.slice(1)
|
||||
})
|
||||
.join('')
|
||||
}
|
||||
|
||||
export default solution
|
Reference in New Issue
Block a user