Skip to content

Instantly share code, notes, and snippets.

@xpepper
Forked from joebew42/learning-javascript.md
Created June 26, 2019 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xpepper/d1405cad06fc9991a856dbdcc6b144c1 to your computer and use it in GitHub Desktop.
Save xpepper/d1405cad06fc9991a856dbdcc6b144c1 to your computer and use it in GitHub Desktop.

Before to start

In JavaScript there is NO concept of Class.

Everything is an Object.

Inheritance between objects is achieved with a mechanism known as Prototypal Inheritance.

We can create Objects and then link them together OLOO (Objects-Linked-to-Other-Objects).

JavaScript Documentation

Things that catched my attention

Other resources

Testing JavaScript

Extensions or Resources about VSCode

1. My First Test "Hello World"

2. Katas

3. A simple application

Starting from the Bank Kata, build a simple frontend application, store data and deploy it somewhere.

Nice to learn

  • Coverage tools
  • How to test the frontend code (interaction with the DOM, etc ...)

Challenge

  • Pair session with experienced people on an open source project
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment