Skip to content

Instantly share code, notes, and snippets.

@hehongwei44
Created July 10, 2014 06:25
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hehongwei44/7e879f795226316c260d to your computer and use it in GitHub Desktop.
Save hehongwei44/7e879f795226316c260d to your computer and use it in GitHub Desktop.
将单个字符串的首字母大写
/**
*
* 将单个字符串的首字母大写
*
*/
var fistLetterUpper = function(str) {
return str.charAt(0).toUpperCase()+str.slice(1);
};
console.log(fistLetterUpper('hello')); //Hello
console.log(fistLetterUpper('good')); //Good
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment