Which Node.js module is used for web-based operations?
Which property is used for cookie manipulation?
The global object for a new worker is _____.
Which React hook works as an alternative to useState?
Which method is used to close a WebSocket connection?
What is the output of the following code?
console.log(Array.from([1, 2, 3], x => x + x));
What will be the output of the following JavaScript code?
int a==2;
int b=4;
int ans=a+b;
print(ans);
What is the function used to deregister event handler ‘f’?
What will be the output of the following code?
function compare()
{
int num=2;
char c=2;
if(num==c)
return true;
else
return false;
}
What will be the output of the following JavaScript code?
function height()
{
var height = 123.56;
var type = (height>=190) ? "tall" : "short";
return type;
}