Realated Questions
What will be the output of the following code snippet?
const example = ({ a, b, c }) => { console.log(a, b, c); }; example(0, 1, 2);
What happens when we run this code?
function dog() { print("I am a dog."); } dog.sound = "Bark";
What will be the output of the following code snippet?
function test(...args) { console.log(typeof args); } test(12);