πŸ“Š JavaScript
Q. What will be the output of the following code snippet?
Code:
const example = ({ a, b, c }) => {
 console.log(a, b, c);
};
example(0, 1, 2);
  • (A) 0 1 2
  • (B) 0 Undefined Undefined
  • (C) Undefined Undefined Undefined
  • (D) None of the above
πŸ’¬ Discuss
βœ… Correct Answer: (C) Undefined Undefined Undefined

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
186
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Admin
Publisher
πŸ“ˆ
87%
Success Rate