How many growl methods are created with Option A Option B?
A developer has two ways to write a function:
Option A:
function Monster() {
This.growl = () => {
Console.log (“Grr!”);
}
}
Option B:
function Monster() {};
Monster.prototype.growl =() => {
console.log(“Grr!”);
}
After deciding on an option, the developer creates 1000 monster objects.
How many growl methods are created with Option A Option B?
A. 1 growl method is created for Option A. 1000 growl methods are created for Option B.
B. 1000 growl method is created for Option A. 1 growl methods are created for Option B.
C. 1000 growl methods are created regardless of which option is used.
D. 1 growl method is created regardless of which option is used.
Answer: B
Latest JavaScript Developer I Dumps Valid Version with 144 Q&As
Latest And Valid Q&A | Instant Download | Once Fail, Full Refund
Subscribe
Login
0 Comments
Inline Feedbacks
View all comments