Fixes #5393 : Title Case a Sentence - Add/Remove helpful links

This commit is contained in:
Mrugesh Mohapatra
2015-12-21 01:33:04 +05:30
parent 71434a6d24
commit ed8ff65a2b

View File

@ -319,7 +319,7 @@
"assert(titleCase(\"HERE IS MY HANDLE HERE IS MY SPOUT\") === \"Here Is My Handle Here Is My Spout\", 'message: <code>titleCase(\"HERE IS MY HANDLE HERE IS MY SPOUT\")</code> should return \"Here Is My Handle Here Is My Spout\".');"
],
"MDNlinks": [
"String.charAt()"
"String.split()"
],
"solutions": [
"function titleCase(str) {\n return str.split(' ').map(function(word) {\n return word.charAt(0).toUpperCase() + word.substring(1).toLowerCase();\n }).join(' ');\n}\n\ntitleCase(\"I'm a little tea pot\");\n"