Without running this code, what will it print?
function show(foo = undefined, bar = null) {
console.log(`foo is ${foo ?? 3}, bar is ${bar ?? 42}`);
}
show(5, 7);
show(0, 0);
show(4);
show();
When using GitHub mode, paste your repository URL below and click Save URL to store it. The saved URL will be automatically included with every message you send until you choose to clear it. Learn more
Without running this code, what will it print?
function show(foo = undefined, bar = null) {
console.log(`foo is ${foo ?? 3}, bar is ${bar ?? 42}`);
}
show(5, 7);
show(0, 0);
show(4);
show();
show(5, 7); // => foo is 5, bar is 7
show(0, 0); // => foo is 0, bar is 0
show(4); // => foo is 4, bar is 42
show(); // => foo is 3, bar is 42
In this problem, a default value is used as the parameter value if the corresponding argument is omitted. Here, the first parameter defaults to undefined, while the second defaults to null. However, our console.log statement has foo default to 3 if it is undefined or null, and bar defaults to 42 if it is undefined or null.
Hi! I'm LSBot. I can help you think through the selected exercise by giving you hints and guidance without revealing the solution. Your code from the editor will be automatically detected. Want to know more? Refer to the LSBot User Guide .
Submit your solution for LSBot review. Hi! I'm LSBot. Your code from the editor will be automatically detected. I'll review your solution and provide feedback to help you improve. Ask questions about your solution or request a comprehensive code review. Want to know more? Refer to the LSBot User Guide .