Which property of a Window object holds the name of the frame?
Which of the following is a factory function in JavaScript?
Which of the following is the correct camel case format?
Which object serves as the global object at the top of the scope chain in client-side JavaScript?
A linkage of series of prototype objects is called as ________
What will be the equivalent code of the following JavaScript code?
o.m(x,y);
Which option of a draggable widget is used to change the cursor shape when we drag some HTML elements?
What is the code to be used to trim whitespaces?
Predict the output:
function foo(b) {
let a = 10;
return a + b + 11;
}
function bar(x) {
let y = 3;
return foo(x * y);
}
console.log(bar(7));
Which of the following is true about a stateless component?