Hacker News new | ask | show | jobs
by Alifatisk 599 days ago
Regarding the Ruby example, why did they use Float("...") instead of #to_f?
1 comments

Probably because `Float()` is stricter and will raise an error if the string isn't a valid number, whereas `#to_f` will silently return 0.0 or do a best-effort conversion (e.g. "1.2abc".to_f => 1.2)
Ohhh!