Skip to content

Latest commit

 

History

History
35 lines (31 loc) · 1.74 KB

README.md

File metadata and controls

35 lines (31 loc) · 1.74 KB

JavaScript Refresher

This repository will take you through different lectures created for refreshing JavaScript skills.

It will have several branches that you can use to retrieve code for different lectures inside JavaScript Refresher Section

If you have an ability to run terminal directly inside your IDE, then click on play icon inside your terminal and it should give you logs for each console log we wrote inside the terminal. This will help you in understanding what happens when certain code blocks get executed. If you have an editor that does not have a terminal inside it, then just open up your terminal, navigate to the root of the directory that has play.js file inside it and run node play.js and you'll see the outputs inside your terminal

  1. syntax-refresher
    • This branch has all the code that we wrote for refreshing JavaScript syntax in your memory ;)
  2. let-const-variables
    • This branch has all the code we wrote for Let & Const Variables lecture
  3. arrow-functions
    • This branch has all the code we wrote for Arrow Functions
  4. objects-properties-and-methods
    • This branch has all the code we wrote for Objects: Properties & Methods lecture
  5. arrays-and-array-methods
    • This branch has all the code we wrote for Arrays & Array Methods lecture
  6. arrays-object-and-reference-types
    • This branch has all the code we wrote for Arrays, Objects & Reference Types lecture
  7. spread-and-rest-operations
    • This branch has all the code we wrote for Spread and Rest Operations lecture
  8. destructuring
    • This branch has all the code we wrote for Destructuring lecture
  9. promises-async-await
    • This branch has all the code we wrote for Async, Await & Promises - Working with APIs lecture