Angular === VS ==
the operator '==' only check equality and '===' check type and equality
0 == '0' => true
0 === '0' => false
Enchanting Earthworm
the operator '==' only check equality and '===' check type and equality
0 == '0' => true
0 === '0' => false