From f3241da53fb0e38ef852235fa42601defc9210e4 Mon Sep 17 00:00:00 2001 From: Amoriss Date: Sun, 8 Jan 2023 20:37:21 -0600 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ef1fc1a..d222c0c 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,8 @@ Your objective is to begin using variables to store and pass values throughout y Steps are to be completed in the `app.js` file. 1. Declare a variable named `firstName` using the `const` keyword -2. Declare a variable named `lastName` using the `let` keyword, and assign your name as the **string** value -3. Declare a variable named `age` using the `var` keyword, and assign your age as the **number** value +2. Declare a variable named `lastName` using the `let` keyword +3. Declare a variable named `age` using the `var` keyword ## Exercise 2: Assigning Values to Variables