JavaScript, Deconstructed: Variables
Variables
Feb 23, 20244 min read20

Search for a command to run...

Series
In this series I break down sometimes complex concepts for easy digestion.
Variables

Data Types In computer programming, a data type is a collection of data values. A data type or type for short is a convenient umbrella name for grouping data of similar values. JavaScript has 8 data types namely String, Number, BigInt, Boolean, Und...

What are operators in JavaScript? The main purpose of operators in JavaScript is to perform operations of various kinds on variables and their respective values by allocating and combining data with specific instructions. This article explores the di...
