📄️ Data Types (Primitive vs Reference)
In Javascipt, Data Types can be categorized into 2 groups: Primitive Types and Reference Types.
📄️ Variable Types (Static vs Dynamic)
NOT AS IMPORTANT AND YOU CAN SKIP IF YOU DON'T UNDERSTAND
📄️ More about Strings!
Now that you've learnt about Data Types have you ever thought about how can i join different data types to form a string?
📄️ Variables
Variables are used to store and accessing data within a program.
📄️ Functions
- A function is a reusable block of code written to perform a single purpose.
📄️ Scope
In general, the concept of scope in computer programming pertains to the accessibility of variables and functions from a given point of the code. In other words, as you write a line of code, what variables and functions do you have access to?
📄️ Hoisting
YOU CAN SKIP FOR NOW IF YOU DON'T UNDERSTAND
📄️ Conditional Expressions
Data Types True or False???
📄️ Control Flow
In simpler terms, control flow is like the flowchart of your program. It dictates the sequence of actions taken by the program as it runs, determining which lines of code get executed and in what order.
📄️ Array
Arrays in programming are data structures used to store collections of items of the same type. In JavaScript, an array is a special type of object that stores a list of values (elements) indexed by a numeric index, starting from 0.