Default Parameters

What will be logged? function demo(a, b = () => console.log(a)) { a = 5; b(); } demo(3);
Next Question (18/21)