diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f673a71 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5502 +} \ No newline at end of file diff --git a/JavaScript_Variables b/JavaScript_Variables new file mode 160000 index 0000000..e36036e --- /dev/null +++ b/JavaScript_Variables @@ -0,0 +1 @@ +Subproject commit e36036e07f564aff9a734672a9ba7edf8bbbd379 diff --git a/app.js b/app.js index c5fc982..9a49e90 100644 --- a/app.js +++ b/app.js @@ -1,10 +1,46 @@ -console.log("Hello World!\n==========\n"); -console.log( + "Follow the steps in the README.md file to complete the exercises:\n==========\n" + + + +//Excercise 1 +const firstName = "Rosie"; +let lastName = "Cotton"; +var age = 15; + +let language = "JavaScript"; +let createdYear = 1995; +let isCaseSensitive = "true"; + +console.log(`${language} was first release in ${createdYear}.'); + +let product = "T-shirty" +Let price = 19.99; +let isOnSale = false; +let salePercentage = 15; +let inStock = false; +let selectSize = "M"; + + + + + +} + +Let title = "Name of the Wind"; +Let author = Patrick Rothfuss; +Let pageCount = 722; +let bookMark = 456; +let hasRead = true; + +console.log ('${title} by ${author} is ${pageCount} pages long. Your last bookmark qas page ${bookmark}). + ); -// Exercise 1 -// Exercise 2 -// Exercise 3 + + + + + diff --git a/index.html b/index.html index 5e6a97f..81a118a 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,15 @@
+ +