I wanted to make a ditto of localstorage into another object, below is how I did in chrome console,
var obj = {}
Object.setPrototypeOf(obj, Object.getPrototypeOf(localStorage))
obj.setItem("a", 1) // this line throws below error
VM663:1 Uncaught TypeError: Illegal invocation
May I know how to fix this.