Skip to content

Instantly share code, notes, and snippets.

View LearningMaterial's full-sized avatar

Ashiqur Rahman LearningMaterial

View GitHub Profile
false == "0" // true
// false gets coerced to 0
// "0" gets coerced to 0
// 0 == 0 is true 

false == 0 // true
// false gets coerced to 0
// 0 == 0 is true