Search Results

Blog Archive

Break and Continue

In JavaScript, the break and continue statements are used to control the flow of loops. They allow you to alter the execution of a loop...
Continue reading

Local storage

Local storage, also knows as web storage, is a feature provided by modern web browsers that allows web applications to store data locally on the...
Continue reading

Session Storage

Session Storage is a web storage mechanism that allows web application to store key-value pairs in user’s browser session. It provides a way to store...
Continue reading