From 330f42bc23f95b6d45aabff394ac7ab3cd9303a1 Mon Sep 17 00:00:00 2001 From: Hari Acharya <118670580+hariacharya7@users.noreply.github.com> Date: Wed, 1 Mar 2023 04:54:11 +0545 Subject: [PATCH] just spelling mistake and missing conjunctions! updated var values to feel realistic and added missing conjunctions. --- .../03_booleans_operators_date.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/03_Day_Booleans_operators_date/03_booleans_operators_date.md b/03_Day_Booleans_operators_date/03_booleans_operators_date.md index bb376ae..13b93b2 100644 --- a/03_Day_Booleans_operators_date/03_booleans_operators_date.md +++ b/03_Day_Booleans_operators_date/03_booleans_operators_date.md @@ -591,15 +591,15 @@ console.log(`${date}/${month}/${year} ${hours}:${minutes}`) // 4/1/2020 0:56 Your first name, Asabeneh is longer than your family name, Yetayeh ``` -1. Declare two variables _myAge_ and _yourAge_ and assign them initial values and myAge and yourAge. +1. Declare two variables _myAge_ and _yourAge_ and assign them initial values and compare myAge and yourAge. ```js - let myAge = 250 + let myAge = 50 let yourAge = 25 ``` ```sh - I am 225 years older than you. + I am 25 years older than you. ``` 1. Using prompt get the year the user was born and if the user is 18 or above allow the user to drive if not tell the user to wait a certain amount of years.