Skip to content

Instantly share code, notes, and snippets.

View PetterRuud's full-sized avatar
🥓
Focusing

Petter PetterRuud

🥓
Focusing
View GitHub Profile
[] + {} // "[object Object]"
{} + [] // 0
var x = true, y = "42";
x == y; // false
y = 'true'
x == y // false
var a = { b: 42 };
var b = { b: 42 };