Part 3 / Special elements / <svelte:window> bindings
We can also bind to certain properties of window, such as scrollY. Update line 7:
<svelte:window bind:scrollY={y}/>The list of properties you can bind to is as follows:
innerWidthinnerHeightouterWidthouterHeightscrollXscrollYonline— an alias forwindow.navigator.onLine
All except scrollX and scrollY are readonly.
initialising