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

后端 未结 5 685
执笔经年
执笔经年 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:35

    there is no difference between the window.localStorage and localStorage the Window is the global object

    the window is the default prefix

    but the correct one is window.localStorage because the localStorage attribute is part of window object.

提交回复
热议问题