Join Now
Home Aptitude Reasoning DI VA GK CA CA Hindi Quiz Placements
Number
String
Object
Boolean
var myConst;
let myConst;
const myConst;
Only A and B
Undefined
Null
NaN
Char
var myNum = 42;
let myNum = 3.14;
const myNum = -99;
All of the above
null
undefined
None of the above
Array
Dictionary
Set
==
===
<=>
!=
Hello + "world";
Hello.concat("world");
Both A and B
var myArr = [];
let myArr = {};
const myArr = ();