6.5 - html APIs
Your Location
Click the button to get your current location.
// Save the theme to local storage localStorage.setItem('theme', 'dark'); // Retrieve the theme when the user comes back const userTheme = localStorage.getItem('theme'); document.body.classList.add(userTheme); // Applies the 'dark' theme
Thanks for sharing
ReplyDelete