js 3c less then

Solutions on MaxInterview for js 3c less then by the best coders in the world

showing results for - "js 3c less then"
Antonia
12 Sep 2019
1const a = 5, b = 2, c = 'hello';
2
3// equal to operator
4console.log(a == 5);     // true
5console.log(b == '2');   // true
6console.log(c == 'Hello');  // false