strings.camelCase camelCase([string]) camelCase updates a string to camelcase Arguments [string] (string): input string Returns (string): returns new camelCase string Example const result = strings.camelCase('--BEST_friend--'); console.log(result); > 'bestFriend'