diff --git a/01-Fundamentals-Part-1/starter/assignments.js b/01-Fundamentals-Part-1/starter/assignments.js new file mode 100644 index 0000000000..487f49cb35 --- /dev/null +++ b/01-Fundamentals-Part-1/starter/assignments.js @@ -0,0 +1,7 @@ +let country = "Poland"; +let continent = "Europe"; +let population = 6000000; + +console.log(country); +console.log(continent); +console.log(population); \ No newline at end of file diff --git a/01-Fundamentals-Part-1/starter/index.html b/01-Fundamentals-Part-1/starter/index.html index 59529c7923..9282fdb45f 100755 --- a/01-Fundamentals-Part-1/starter/index.html +++ b/01-Fundamentals-Part-1/starter/index.html @@ -22,8 +22,11 @@ color: white; } +

JavaScript Fundamentals – Part 1

+ + diff --git a/01-Fundamentals-Part-1/starter/script.js b/01-Fundamentals-Part-1/starter/script.js new file mode 100644 index 0000000000..19fb0e911a --- /dev/null +++ b/01-Fundamentals-Part-1/starter/script.js @@ -0,0 +1,11 @@ + let js = "amazing"; + console.log(40 + 8 + 23 - 10); + + + console.log('Jonas') + console.log(23); + + let firstName = 'Ola'; + console.log(firstName); + console.log(firstName); + console.log(firstName); \ No newline at end of file