Hacker News new | ask | show | jobs
by titzer 1154 days ago
While JavaScript didn't have BigInt until a couple years ago, it did start with all numbers being floats. JSVMs optimize heavily for the small integer (SMI) case. They do both dynamic profiling, speculative optimization, and significant type analysis to get very good code for the SMI cases.
1 comments

you realise floats are far easier because in any case you are limited to 64 bits and you know that?