typescript 3d 3d vs 3d 3d 3d

Solutions on MaxInterview for typescript 3d 3d vs 3d 3d 3d by the best coders in the world

showing results for - "typescript 3d 3d vs 3d 3d 3d"
Jerónimo
11 Apr 2019
1/*
2The == operator will compare for equality after doing any necessary type conversions. 
3The === operator will not do the conversion, so if two values are not the same type === will simply return false. 
4Both are equally quick.
5*/
6
70 == '' // true
80 === '' // false
9