Checklist progress
0/168Learned
JavaScript Developer
Study Checklist
Checklist progress
0/168Learned
Given a business requirement, utilize Events, event handlers, and propagation.
0/9
Given a business requirement, evaluate and manipulate the DOM.
0/10
Given a scenario, utilize the Browser Dev Tools to investigate code behavior.
0/4
Given a scenario and requirements, utilize browser specific APIs.
0/10
Fetch API: making GET and POST requests, handling the Response object, and parsing JSON
Learn this conceptFetch API request options: method, headers, body, mode, and credentials
Learn this conceptWeb Storage API: setItem, getItem, removeItem, and clear methods
Learn this conceptwindow.location methods for navigation: assign(), replace(), reload()
Learn this conceptURL and URLSearchParams APIs for constructing and parsing URLs and query parameters
Learn this conceptPrepare for the Exam
Study Community
Ask questions and get the latest info from other JavaScript Developer studiers. 593 members and growing.
The Web Storage API provides two key-value stores: localStorage (persists until explicitly cleared) and sessionStorage (cleared when the browser tab closes). Both share the same API: setItem, getItem, removeItem, and clear.