What\'s the best way of checking if an object property in JavaScript is undefined?
In the article Exploring the Abyss of Null and Undefined in JavaScript I read that frameworks like Underscore.js use this function:
function isUndefined(obj){ return obj === void 0; }