angular == vs === code example
Example: angular === vs ==
the operator '==' only check equality and '===' check type and equality
0 == '0' => true
0 === '0' => false
the operator '==' only check equality and '===' check type and equality
0 == '0' => true
0 === '0' => false