Skip to content

Instantly share code, notes, and snippets.

@olaysco
Last active May 30, 2020 16:22
Show Gist options
  • Save olaysco/10285572e99bdb59131d41652160ceaa to your computer and use it in GitHub Desktop.
Save olaysco/10285572e99bdb59131d41652160ceaa to your computer and use it in GitHub Desktop.
camelCase to snake_case
const snake_case = "topLeftRightH".replace(/([A-Z])/g, " $1").toLowerCase().replace(/( )/g,'_');
// "top_left_right_h"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment