From 057c17b90b5889bf1ac93ff62ad7322071a14fbd Mon Sep 17 00:00:00 2001 From: dcgoodwin2112 Date: Sat, 3 Apr 2021 23:03:33 -0400 Subject: [PATCH] Update fullName field assignment The fullName field assignment on line 18 sets the value to firstname + " " + lastname (All lowercase) It looks like the variable assignment should likely be firstName + " " + lastName instead. Thanks! -Dan --- code/module-02/m02-start/module02.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/module-02/m02-start/module02.ts b/code/module-02/m02-start/module02.ts index 7f259fa..f9e638f 100644 --- a/code/module-02/m02-start/module02.ts +++ b/code/module-02/m02-start/module02.ts @@ -15,7 +15,7 @@ firstName = 'Rebecca'; lastName = 'Smith'; age = 42; ukCitizen = false; -fullName = firstname + " " + lastname; +fullName = firstName + " " + lastName; if (ukCitizen) { console.log("My name is " + fullName + ", I'm " + age + ", and I'm a citizen of the United Kingdom."); @@ -80,4 +80,4 @@ console.log(whichMonths("Fall")); console.log(randomNumbers); - \ No newline at end of file +