Monthly Archives: February 2010

On the ephemeral nature of delete

Delete in JavaScript is a peculiar beast. Witness: typeof x; // outputs undefined delete x; // outputs true even though x is not defined typeof x; // outputs undefined So, it is possible to delete an undefined variable in the … Continue reading

Posted in Technology | Leave a comment

Null is not undefined

A common mistake amongst new (and even experienced) JavaScript developers is confusing the null object in JavaScript with undefined. In fact, I’m willing to bet that most are not aware that the undefined keyword exists, much less that it is … Continue reading

Posted in Technology | Leave a comment

Hard Drive Space

My first computer did not have a hard drive. We used 5ΒΌ-inch inch floppy disks, swapping them in and out, to get a program running. Occasionally, a floppy disk would bork and we’d have to restart the entire process. Floppy … Continue reading

Posted in Technology | 1 Comment