=== JavaScript

// ===	means equal value and equal type
var x = 5

// true
x === 5

// false
x === "5"
Lazy Lapwing