is it good to use sessionstorage code example
Example 1: sessionstorage
sessionStorage is like localStorage
except that it is cleared when the page session ends meaning when you close
your chrome tab or any other browser tab
usage methods
sessionStorage.setItem('key', 'value');
let data = sessionStorage.getItem('key');
sessionStorage.removeItem('key');
sessionStorage.clear();
Example 2: what is sessionStorage
sessionStorage is like localStorage
except that it is cleared when the page session ends
— that is, when the page is closed.