Corey Frang (2013-11-11T07:33:37.000Z)
domenic at domenicdenicola.com (2013-11-15T18:53:38.823Z)
Just to provide another way of working around it: ```js var empty = {}; // or even a symbol? function splice(start = empty, count = 0, ...items) { if (start === empty) { ... } ```