|
You are here |
arnorhs.dev | ||
| | | | |
james.darpinian.com
You may know that all numbers in JavaScript are 64 bit double-precision floating point values. This is sometimes convenient and it works pretty well as a default for novice programmers, who are often confused by integer math, and rightfully so when 1 / 2 = 0. Unfortunately, it makes things slow. Doubles take a lot of memory and floating point math is slower than integer math on CPUs. It's also inconvenient if you want to port existing code to JavaScript, because existing code usually expects to use integ... |
|
| | | | | ||
| | | | |
marcospereira.me
Understanding floating point representation can help design systems in order to make the most out of this type. |
|
| | | | | ||
| | | | |
golb.hplar.ch
[AI summary] A technical overview of JavaScript's BigInt primitive, covering its syntax, arithmetic operators, type conversion rules, limitations regarding JSON, and available polyfills. |
|
| | | | | ||
| | | | |
philodev.one
oAuth is a hard to get into because of its (necessary) complexity. A basic understanding of the standard flow and the actors involved can help to make better decisions and understand the security implications of the choices. |
|
| | | |||