Skip to content

muses-code-js/js-intro-workshop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

js-intro-workshop

An introductory JavaScript workshop for beginners.

Structure

  • Css folder contains css files that are responsible for styles and how our project looks on the web.

  • 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). Level 1
    • level2.js - more complex javaScript with explanations(arrays, loops, events). Level 2
  • 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.