The problem is that the following makes logically no sense to me, maybe anyone could explain (explanation what JSON.parse/JSON.stringify EXACTLY does would be appreciated too):
var hello = {norsk: "hei"}, parsedHello = JSON.parse(JSON.stringify(hello));
hello === parsedHello // false
hello == parsedHello // false
typeof(hello) // "object"
typeof(parsedHello) // "object"
hello.norsk === parsedHello.norsk // true