ECMAScript
Everything on SkillVeris tagged ECMAScript — collected across the glossary, study notes, blog, and cheat sheets.
3 resources across 1 library
Interview Questions(3)
What Is Type Coercion in JavaScript?
Type coercion is JavaScript automatically converting a value from one type to another — string, number, or boolean — when an operator or context expects a diff…
What Is NaN and How Do You Check for It?
NaN ("Not a Number") is a special numeric value JavaScript returns when a math operation cannot produce a meaningful number, and by spec it is the only value t…
What Does Array Sort Stability Mean?
A sort is stable when elements that compare as equal under the comparator retain their original relative order in the output, and modern JavaScript engines gua…