All Projects → reactgraphqlacademy → es6-exercise

reactgraphqlacademy / es6-exercise

Licence: other
This exercise is part of the training provided by https://reactgraphql.academy/

Programming Languages

javascript
184084 projects - #8 most used programming language

ES6 exercise

The goal of this exercise is to practice some cool ES6 features by doing TDD. This kind of practice is known as Koans.

To solve this kind of exercise you don't have to know unit testing, since you won't write any test and the output of the tests will be rendered in the terminal. However, it might be helpful for some people to look at the test itself to understand what has to be implemented in every case.

Get started

If you have yarn: git clone https://github.com/reactgraphqlacademy/es6-exercise.git && cd es6-exercise && yarn install

If you have npm: git clone https://github.com/reactgraphqlacademy/es6-exercise.git && cd es6-exercise && npm install

Exercise

  • run npm test or yarn test, by default it will run all the tests.
  • We recommend you to start by running just one file, for instance:
    • npm run test -- src/01* will run just this test 01_destructure.test.js.
    • npm run test -- src/02* will run just this test 02_rest-operator.test.js.
    • and so on
  • You can fix them in any order, but we recommend you to start from test 01, then 02, and so on.
  • Once all the tests pass, you'll be an ES6 expert! :)

Articles and links

Links to the relevant MDN docs for the topics covered:

You can also check out this list of more in depth articles on ES6:

https://hacks.mozilla.org/category/es6-in-depth/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].