Answers for "difference between === and == in angular"

C#
0

angular === vs ==

the operator '==' only check equality and '===' check type and equality

0 == '0' => true
0 === '0' => false
Posted by: Guest on January-29-2021

Code answers related to "difference between === and == in angular"

C# Answers by Framework

Browse Popular Code Answers by Language