Variables store data. In modern JavaScript we use let and const:
let name = "Bethwel"; // can change const PI = 3.14; // cannot change console.log(name); // prints: Bethwel
String, text in quotes: "hello"Number, 42, 3.14Boolean, true or falseArray, [1, 2, 3]Object, {name: "Merik", age: 2}Create variables for your name, age, and favorite language. Display them on the page!