You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Store you first name, last name, age, country, city in your browser localStorage.
localStorage.setItem('firstName','Dwayne')
localStorage.setItem('lastName', 'Mensah')
localStorage.setItem('age', 22)
localStorage.setItem('country', 'United Kingdom')
localStorage.setItem('city', 'London')
console.log(localStorage)
// Create a student object. The student object will have first name, last name, age, skills, country, enrolled keys and values for the keys. Store the student object in your browser localStorage.