Learning Log logo

JavaScript

JavaScript

A language used to create interactive effects on a webpage.

Best practices

  • Comments: provide a brief explanation for label to the code
  • Modules: save the code in individual files for each function to assist with organization and debugging
  • Debug: run the code and check for errors using the text editor and DevTools (99% right is still wrong)

Hints

  • Check folder pathway
  • Check for spelling errors
  • Check for any flagged problems
  • Use console.log() to see if function is being implemented
  • TypeScript is a syntactic superset of JavaScript which adds static typing which means that TypeScript adds syntax on top of JavaScript, allowing developers to add types

One & Done