FrontendTips
GitHub ★
Convert string to number
Instead of using the
`Number()`
constructor to convert a string to number, you can use the
`+`
operator:
+
'010'
;
// 10
+
'2e1'
;
// 20
+
'0xF'
;
// 15
Conditional logging in the Console
Copy a long variable from the Console