I am setting an object like this
n.name = n.name.join(String.fromCharCode(255));
n.description = n.description.join(String.fromCharCode(255));
I want to be able to alert(n);
but it tells me [Object]
is there a way to alert complete object?
thanks