Advertisement
728x90
javascript
1const a = new Number(10);
2
3const b = 10;
4
5console.log(a === b);Choose the correct output:
A
FalseB
TrueAdvertisement
Responsive Ad
75of86
Advertisement
1const a = new Number(10);
2
3const b = 10;
4
5console.log(a === b);Advertisement