Skip to content

Instantly share code, notes, and snippets.

View gBritz's full-sized avatar
🎯
Focusing

Guilherme Britz Videira gBritz

🎯
Focusing
View GitHub Profile
@gBritz
gBritz / gist:b2bc95e926d80e5a15fc
Created April 28, 2015 20:55
TypeError: Converting circular structure to JSON
var obj1 = {
prop1: "Teste referência circular",
prop2: null
};
var obj2 = {
prop1: obj1
};
obj1.prop2 = obj2;
var cache = [];