Skip to content

Instantly share code, notes, and snippets.

@jronal
Created July 8, 2014 23:21
Show Gist options
  • Select an option

  • Save jronal/64778b4063c89be3944d to your computer and use it in GitHub Desktop.

Select an option

Save jronal/64778b4063c89be3944d to your computer and use it in GitHub Desktop.
convert underscore to camelCase
var camelCase = string.replace(/_([a-z])/g, function (g) { return g[1].toUpperCase(); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment