Is there any difference between: window.localStorage and localStorage?

后端 未结 5 547
执笔经年
执笔经年 2021-01-07 17:46

I have been doing the following:

var store = window.localStorage;
store.setItem()

but now I see code doing this:

localStora         


        
5条回答
  •  清酒与你
    2021-01-07 18:24

    "window" is the global object in Javascript, so you can ommit it if there's no chance for a conflict

提交回复
热议问题