-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jaden Casing Strings.js
24 lines (18 loc) · 1.2 KB
/
Jaden Casing Strings.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Jaden Smith, the son of Will Smith, is the star of films such as The Karate Kid (2010) and After Earth (2013). Jaden is also known for some of his philosophy that he delivers via Twitter. When writing on Twitter, he is known for almost always capitalizing every word. For simplicity, you'll have to capitalize each word, check out how contractions are expected to be in the example below.
// Your task is to convert strings to how they would be written by Jaden Smith. The strings are actual quotes from Jaden Smith, but they are not capitalized in the same way he originally typed them.
// Example:
// Not Jaden-Cased: "How can mirrors be real if our eyes aren't real"
// Jaden-Cased: "How Can Mirrors Be Real If Our Eyes Aren't Real"
//P: string
//R: return Jaden Smith quotes and each word first letter shoud be capitalize
//E:
//P:
function toJadenCase(str) {
let str1 = str.split(' ')
// console.log(str1)
for(let i=0; i<str1.length; i++){
str1[i]=str1[i].charAt(0).toUpperCase() + str1[i].slice(1);
}
return str1.join(' ');
};
console.log(toJadenCase("How can mirrors be real if our eyes aren't real"), "How Can Mirrors Be Real If Our Eyes Aren't Real")