my blog https://overreacted.io

lol

+1 -1
+1 -1
public/beyond-booleans/index.md
··· 208 208 209 209 ```js 210 210 function someFunction(x: number) { 211 - if (x >= 0 && x ≤ 1) { 211 + if (x >= 0 && x <= 1) { 212 212 return x ** 2; 213 213 } else { 214 214 throw RangeError('x must be between 0 and 1');