How to use Local Storage with Javascript

Поділитися
Вставка
  • Опубліковано 12 вер 2024
  • Using local storage will allow your applications to have persistent data, meaning you can have bits of data remain even after the browser is closed.
    This is a beginner's tutorial showing you how to use local storage in javascript.
    INSTAGRAM: links.thedevli...
    DISCORD: links.thedevli...
    FACEBOOK: links.thedevli...
    #javascript #softwaredeveloper #softwareengineer

КОМЕНТАРІ • 2

  • @henkhavenga570
    @henkhavenga570 5 місяців тому +1

    This is a very informative video. To the point, clear and concise. Thank you! Question: How would you store a collection of objects in local storage?

    • @thedevlife
      @thedevlife  5 місяців тому

      thanks for the support! In a very similar way, you would have an object that has a nested array, something like this: { "myArray":[ "object1":{ "property1":"val1"}] }
      then stringify it