What is the command used for debugging output in Node.js?
The function stops its execution when it encounters?
Which property is associated with the Request event?
What happens when you reference document.location
from within an object?
How can you access the properties of the following object?
var obj = {
a: "a",
b: "b",
c: "c",
d: "d"
};
A common use case for the useRef
hook in React is to
What is the function of the replace
prop in the <Link>
component?
What will be the output of the following code?
const event = ["featured","prompted","filtered"]
const events = event.map(e => e + 's')
console.log(events[0])
Which of the following statements about strict mode in JavaScript is true?
Corresponding to the following script, which of the following ways of accessing the object properties is correct?
function Ticket(from,to,Name){
this.from=from;
this.to=to;
this.Name= Name;
}
var ticket=new Ticket( "Tezpur","Ranchi","Cinu" );