var obj = { func: function(a, b) { return a + b; } }; delete obj.func; obj.func(); // Uncaught TypeError: obj.func is not a function