JavaScript values have types, and beginners need to see that a string, number, and boolean behave differently. This lesson turns that idea into a small typed summary.
const name = "Mia";
const age = 14;
const isStudent = true;
console.log(typeof name, typeof age, typeof isStudent);
Use a string for the name, a number for the age, and a boolean for the student flag.