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
Single-element DOM selection: getElementById and querySelector
Learn this conceptTraversing the DOM: parentNode, children, firstElementChild, lastElementChild, nextElementSibling
Learn this conceptCreating DOM elements with createElement
Learn this conceptInserting DOM nodes: appendChild, append, insertBefore, prepend
Learn this conceptRemoving DOM nodes: removeChild, element.remove()
Learn this conceptModifying element attributes: getAttribute, setAttribute, removeAttribute, dataset property
Learn this conceptclassList API: add, remove, toggle, contains for CSS class manipulation
Learn this conceptGiven a scenario, utilize the Browser Dev Tools to investigate code behavior.
0/4
Given a scenario and requirements, utilize browser specific APIs.
0/10
Prepare for the Exam
Study Community
Ask questions and get the latest info from other JavaScript Developer studiers. 593 members and growing.
document.getElementById and document.querySelector are the primary methods for selecting a single DOM element. getElementById returns the element with the matching id attribute; querySelector accepts any valid CSS selector string and returns the first match.