safely coercing strings to numbers with javascript
Snippet
Instead of being asleep at 14:57 on 16 May 2011, kitt created this:
safely coercing strings to numbers) #javascript
return (+value + '') === value ? +value : value;
Add new comment