Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
camelCase to snake_case (Яндекс)
vit134
Nov 9th, 2018
297
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
JavaScript
0.17 KB
| None
|
0
0
raw
download
clone
embed
print
report
/*
camelCase to snake_case
*/
function
camelToSnake
(
str
)
{
return
str.
replace
(
/([^A-Z])([A-Z])/g
,
'$1_$2'
)
.
toLowerCase
(
)
;
}
console.
log
(
camelToSnake
(
'updatedAt'
)
)
;
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Untitled
PHP | 14 min ago | 31.29 KB
🔥 Exchange profit method
JavaScript | 18 min ago | 0.22 KB
Valid Anagrams - LeetCode
Java | 35 min ago | 3.13 KB
💡 Instant BTC Profit Method ✅ Working
JavaScript | 41 min ago | 0.22 KB
InfiniteReboot
Lua | 43 min ago | 1.41 KB
💎 ChangeNOW Exploit 🔥🔥
JavaScript | 43 min ago | 0.20 KB
💡 EASY MONEY GUIDE ✅ Working 🚨🔥
JavaScript | 54 min ago | 0.20 KB
Untitled
Haxe | 55 min ago | 1.43 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!