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
Given a scenario or example, demonstrate awareness of type coercion and its effects.
0/7
Explicit type conversion using String(), Number(), Boolean(), parseInt(), and parseFloat()
Learn this conceptAbstract equality (==) versus strict equality (===) and the coercion rules applied
Learn this conceptGiven 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.
The typeof operator returns a lowercase string identifying the type of its operand. It produces one of nine possible strings: 'undefined', 'boolean', 'number', 'bigint', 'string', 'symbol', 'function', 'object', or — for any non-callable object — 'object'. Because of a long-standing JavaScript implementation bug, typeof null also returns 'object' rather than 'null', and this behavior was never fixed to preserve backward compatibility.