Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript How to use Local Storage

difference between localStorage.getItem('color'); localStorage.color;

Is there a difference between : localStorage.getItem('color'); and localStorage.color;

because these are the results I get on my console when i delete the color property:

localStorage.getItem('color');
null
localStorage.color;
undefined```

1 Answer

no big difference. localStorage.getItem is a method defined of the localStorage object and returns the properties set in local storage and will return null if properties doesn't exist. on the other hand localStorage.color is accessing the property color in the localStorage object directly which will return undefined if that property doesn't exist just like any other object.