Freecodecamp:title case a sentence

Source: Internet
Author: User

Requirements:

Make sure that the first letter of each word in the string is capitalized, and the remainder is lowercase.

Connectors like ' the ' and ' of ' are the same.

Results:

    • titleCase("I‘m a little tea pot")should return a string
    • titleCase("I‘m a little tea pot")The "I ' m A Little Tea Pot" should be returned.
    • titleCase("sHoRt AnD sToUt")Should return "short and Stout".
    • titleCase("HERE IS MY HANDLE HERE IS MY SPOUT")You should return to "Here's my Handle here is my Spout".

Code:

1 function Titlecase (str) {2   varArr=str.split (" ");3   varnewarray=[];4    for(varI=0; i<arr.length;i++){5     varNewstr=arr[i].slice (0,1). toUpperCase () +arr[i].slice (1). toLowerCase ();6 Newarray.push (NEWSTR);7   }8   returnNewarray.join (" ");9 }Ten  OneTitlecase ("I ' m a little tea pot");

Freecodecamp:title case a sentence

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.