Skip to main content Accessibility Feedback

JSON

JSON.parse()

Convert stringified JSON back into an object or array.

// Get data from local storage
let savedLunch = JSON.parse(localStorage.getItem('lunchOrder'));
let savedDrinks = JSON.parse(localStorage.getItem('drinkOptions'));

Preorder my new course on Web Components! Want to learn how to build Web Components from scratch, master best practices, and more? Preorder today and get $100 off of the launch price.


Find this useful? You can support my work by purchasing an annual membership.