What is the difference between unary plus/Number(x) and parseFloat(x)?
08:39 01 Sep 2012

I'm asking this just for the sake of shaving a few bytes.

I know I can use +x (unary plus) instead of Number(x). Is there a difference between those and parseFloat?

javascript optimization