undefined in javascript

Beginner JavaScript – 7 – Introduction to Data Types

Hey everyone 👋🏻, In this article, let us discuss about the basic introduction to Data Types in JavaScript. This is the seventh part of my Beginner JavaScript Series on Dev. Data Types in JavaScript – A complete picture Any variable that we define in JavaScript has a data type. For example, if you have a sentence then…

Understanding Primitives and Reference Types in JavaScript

Hey guys 👋🏻, In this article, let us cover the topic of Understanding Primitives and Reference Types in JavaScript. Primitive value is stored directly in the location that the variable accesses. And the Reference values are objects that are stored in the heap. Reference value stored in the variable location is a pointer to a location…