Skip to content

Latest commit

 

History

History

0x12-javascript-warm_up

0x12. JavaScript—Warm up

An introductory project to JavaScript, covering:

  • How to run a JavaScript script
  • How to create variables and constants
  • How to use comments
  • How to affect values to variables
  • How to use while and for loops
  • What is a function and how do you use functions
  • What does a function that does not use any return statement return
  • Scope of variables
  • How to manipulate dictionary
  • How to import a file
  • What are the differences between var, const and let
  • What are all the data types available in JavaScript?
  • How to use the if, if ... else statements
  • How to use break and continue statements
  • What are the arithmetic operators and how to use them