An introductory JavaScript workshop for beginners.
How to use
If you familiar with git you can clone repositore to your machine and simply start working through files starting from README.md file, after jump to js/level1.js file.
If you don't know what is git, relax, you can download the folder on your machine - go to 'releases' tab over the yellow line on the page and download folder 'Source code (zip)'. Unzip it and start from README.md file, after jump to js/level1.js file.
To open web-page in your browser go to index.html file and double click on it, you will see an option 'open in browser' - preferably use Chrome, but Firefox and Safari will work as well.
Structure
-
Css folder contains css files that are responsible for styles and how our project looks on the web.
-
img folder - a place where we can store images that we will use on our web-page
-
Js folder contains javaScript files that makes our project works, it defines content and make static page functional. It contains 2 files:
- level1.js - basics with explanations(comments, variables, functions, if/else statements).
- level2.js - more complex javaScript with explanations(arrays, loops).
- level3.js - html, css and how manipulate them with javaScript (selectors)
-
index.html - a file that responsible for structure of our project.
-
Readme.md - a file with explanations and any information about the project, how to run it, what it is for etc.
-
cheat-sheet.md - file with quick overlook for key namings and their explanations.