LLD - Design — Food Delivery System
Identify the bug in this notification function and select the fix:
function notifyAll(parties, message) {
for (let i = 0; i < parties.length; i++) {
parties.send(message)
}
}Identify the bug in this notification function and select the fix:
function notifyAll(parties, message) {
for (let i = 0; i < parties.length; i++) {
parties.send(message)
}
}parties.send(message) to parties[i].send(message) -> Option D15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions