#javascript
Level up with your javascript skills with these tips and tidbits.
Check out our pinterest page dedicated to javascript as well!
Using Dev Tools To View & Edit Local Storage
Jun 16, 2019
Using dev tools you can view and edit local storage quickly and easily.
Using nvm To Manage Node Versions
Jun 15, 2019
Node version manager or nvm is an excellent way to manage multiple node.js versions.
Freezing Object In Javascript
Jun 04, 2019
Object.freeze() is useful to prevent an object from changing, so no new properties can be added to it, no existing properties can be removed, the enumerability can not be changed, and existing values of properties can not be changed.
Using the Debugger Keyword To Set A Breakpoint
May 23, 2019
The debugger keyword is an accepted automatic breakpoint setter in almost all browsers.