safely coercing strings to numbers with javascript
Snippet
Written with a loving hand by kitt some time around 14:57 on 16 May 2011
safely coercing strings to numbers) #javascript
return (+value + '') === value ? +value : value;
Add new comment