Learn. Build. Share.
A space for developers to grow their skills, build real projects, and share stories that inspire others.
13 articles found
Latest posts • Page 2 of 2
JavaScript
Type Coercion
Learn JavaScript type coercion. Understand how values convert to strings, numbers, and booleans, plus the 8 falsy values.
Al-Hussein
22 min readJavaScript
Primitives vs Objects: How JavaScript Values Actually Work
Learn how JavaScript primitives and objects differ in behavior. Understand immutability, call-by-sharing semantics, why mutation works but reassignment doesn't, and how V8 actually stores values.
Al-Hussein
23 min readJavaScript
Primitive Types
Learn JavaScript’s 7 primitive types: string, number, bigint, boolean, undefined, null, and symbol. Understand immutability, typeof quirks, and autoboxing..
Al-Hussein
26 min readJavaScript
Call Stack: How Function Execution Works
Learn how the JavaScript call stack works. Understand stack frames, LIFO ordering, execution contexts, and stack overflow errors.
Al-Hussein
24 min read