diff --git a/README.md b/README.md index a3a32bc..9a8fcf9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ # learn-js JavaScript tutorial repo -### REPLACE WITH YOUR FULL NAME +### MUHAMMAD MEHDI ALI diff --git a/quiz/arrow.html b/quiz/arrow.html index d877db1..98ab01e 100644 --- a/quiz/arrow.html +++ b/quiz/arrow.html @@ -12,7 +12,7 @@ diff --git a/quiz/vars3.html b/quiz/vars3.html index 5b2d10d..1bf2253 100644 --- a/quiz/vars3.html +++ b/quiz/vars3.html @@ -5,8 +5,8 @@ const PI = 3.14159; { let radius = 5; - let area = PI * radius * radius; - PI = 3.0; + var area = PI * radius * radius; + //PI = 3.0; } console.log(area); diff --git a/quiz/where2putjs.html b/quiz/where2putjs.html index 0dff0b6..e4c59ca 100644 --- a/quiz/where2putjs.html +++ b/quiz/where2putjs.html @@ -4,12 +4,7 @@ Title - +
@@ -17,6 +12,11 @@

Demo JavaScript in Body

Placeholder ...

- + \ No newline at end of file diff --git a/scripts/whatisthis.js b/scripts/whatisthis.js index 8cba7b1..df2fa01 100644 --- a/scripts/whatisthis.js +++ b/scripts/whatisthis.js @@ -9,4 +9,5 @@ const person = { } } -console.log(person.fullName()); \ No newline at end of file +console.log(person.fullName()); +console.log(window.lastName); \ No newline at end of file