Join Now
Home Aptitude Reasoning DI VA GK CA CA Hindi Quiz Placements
Determines if a value is a number or not.
Determines if a value is a string or not.
Determines if a value is undefined or not.
Determines if a value is null or not.
Deletes a variable
Deletes a property of an object
Deletes an element from an array
Deletes a function
What is the output of the following code?
var x = 5;var y = 2;console.log(x % y);
2
2.5
3
1
console.log("2" * "3");
5
6
23
function myFunction() {}
var myFunction = function() {};
const myFunction = () => {};
all of the above
To refer to the global object.
To refer to the parent object.
To refer to the child object.
To refer to the current object.
console.log(3 === "3");
0
NaN
null
for loop
while loop
do-while loop
if statement
A function that is called when an error occurs.
A function that is called when a button is clicked.
A function that is passed as an argument to another function and is called when the first function has finished executing.
A function that is used to generate random numbers.
Number
Array
Object
Function