Checklist progress
0/168Learned
JavaScript Developer
Study Checklist
Checklist progress
0/168Learned
Given a scenario, write code to create variables and initialize them correctly.
0/8
Given a business requirement, utilize strings, numbers, and dates effectively.
0/11
Template literals (backtick strings) for multi-line strings and expression interpolation
Learn this conceptString search methods: indexOf, includes, startsWith, endsWith
Learn this conceptString extraction and splitting: slice, substring, split
Learn this conceptString modification methods: replace, trim, padStart, padEnd, repeat
Learn this conceptNumber parsing: Number.parseInt and Number.parseFloat
Learn this conceptNumber formatting with toFixed for decimal places
Learn this conceptMath rounding methods: Math.floor, Math.ceil, Math.round
Learn this conceptMath comparison and absolute value: Math.max, Math.min, Math.abs
Learn this conceptDate object creation with new Date() and getter methods: getFullYear, getMonth, getDate, getTime
Learn this conceptDate serialization: toISOString and toLocaleDateString for string output
Learn this conceptGiven a scenario or example, demonstrate awareness of type coercion and its effects.
0/7
Given a specific scenario, distinguish truthy or falsey evaluations.
0/4
Given a list of data, demonstrate data manipulation with arrays.
0/8
Given a JSON response, demonstrate how to operate the JSON object.
0/4
Prepare for the Exam
Study Community
Ask questions and get the latest info from other JavaScript Developer studiers. 593 members and growing.
JavaScript strings expose four search methods that let you locate substrings or verify string boundaries: indexOf, includes, startsWith, and endsWith. indexOf returns a numeric position while the other three return a boolean, making them natural for conditional checks.