Javascript Multiple Choice Questions
Which of the following is NOT a valid data type in JavaScript? a) Number b) String c) Boolean d) Character
Answer: d) Character
What will be the output of the following code?
var x = 5;
console.log(x++);
a) 5 b) 6 c) 4 d) Error Answer: a) 5
Wh...
anusree-anilkumar.hashnode.dev21 min read