Which of the following is the correct output for the following JavaScript code?
const x = 8; if(x>9) { console.log(9); } else { console.log(x); }
9
0
8
undefined
Correct Answer : C
Which of the following one is the property of the primary expression:
Which one of the following is used for calling a function or a method in JavaScript:
The "new Point(3,2)", is a kind of _______ expression