instance method String#capitalize

View source on GitHub →

String#capitalize() → String

Capitalizes the first letter of a string and downcases all the others.

Examples
'hello'.capitalize();
// -> 'Hello'
 'HELLO WORLD!'.capitalize();
// -> 'Hello world!'