Introduction
Welcome to the world of JavaScript! In this lab, you will learn about two of the most fundamental concepts in programming: variables and data types. Variables are like containers that store information, and data types define what kind of information a variable can hold.
We will cover:
- Declaring variables using the
letkeyword. - Working with three basic data types: String (text), Number (numeric values), and Boolean (true/false).
- Using the
console.log()function to display output. - Checking a variable's data type with the
typeofoperator.
By the end of this lab, you will have a solid foundation for working with data in JavaScript.







