Skip to content

Instantly share code, notes, and snippets.

View kpozin's full-sized avatar

Konstantin Pozin kpozin

View GitHub Profile
function Person(){}
Person.prototype.greet = function(){ alert("Hi!"); };
var p = new Person();
JSON.parse(JSON.stringify(p)).greet(); // throws Object #<an Object> has no method 'greet' in Chrome