Introduction
Here you will find some exercises for JavaScript Fundamentals.
Starting with the exercises
To start with the exercises I can recommend you following steps:
- install Node.JS Link
- create a folder:
mkdir -p js-exercises/javascript-fundamentals/shop
- go to the folder:
cd js-exercises/javascript-fundamentals/shop
- init a node package:
npm init -y
- add a new script in the
package.json
see at the bottom: - add an
index.js
:touch index.js
- write your code and start the
index.js
withnpm run start