A few fun little Math-related wtfjs examples. A classic one is adding an empty Array and an empty Object:
[] + {} // '[object Object]'
{} + [] // 0
If you’re looking for a hint: Coercion.
A rather geeky/technical weblog, est. 2001, by Bramus
0.1 + 0.2
results in 0.30000000000000004
)A few fun little Math-related wtfjs examples. A classic one is adding an empty Array and an empty Object:
[] + {} // '[object Object]'
{} + [] // 0
If you’re looking for a hint: Coercion.