camelize (str) String
public
Returns the lowerCamelCase form of a string.
'innerHTML'.camelize(); // 'innerHTML' 'action_name'.camelize(); // 'actionName' 'css-class-name'.camelize(); // 'cssClassName' 'my favorite items'.camelize(); // 'myFavoriteItems' 'My Favorite Items'.camelize(); // 'myFavoriteItems' 'private-docs/owner-invoice'.camelize(); // 'privateDocs/ownerInvoice'
Parameters:
-
str
String
- The string to camelize.
Returns:
-
String
- the camelized string.
Please login to continue.