Quotes help make search much faster. Example: "Practice Makes Perfect"

Saturday, December 17, 2016

Codefights properNounCorrection(noun)


//sample solution
function properNounCorrection(noun) {
    var firstLetter = noun.toUpperCase().slice(0,1);
    document.writeln(firstLetter,"<br/>");
    var restOfTheWord = noun.toLowerCase().slice(1,noun.length);
    document.writeln(restOfTheWord,"<br/>");
    return firstLetter+restOfTheWord;
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts