Corey Frang (2013-11-11T19:31:40.000Z)
domenic at domenicdenicola.com (2013-11-15T18:55:53.507Z)
I hate to bring this up, as I'm sure I've missed a bunch of the arguments that define WHY, but if this is the case, it seems unintuitive to me that passing undefined still results in a default param being set. ```js function test(a = 1) { console.log(a); } test(); // gets 1 - yay test(undefined); // gets 1 - boo! Expect: undefined ```