This question is so basic, yet I have no idea of the answer.
Why screen
object when stringified returns empty?
Does this mean JSON.stringify()
needs read/write access to the input?
let a = {foo: 'one', bar: 2};
console.log(JSON.stringify(a));
console.log(JSON.stringify(screen));