/cybertLeet_test

Primary LanguageJavaScriptMIT LicenseMIT

Setup

test
# download the code locally
git clone https://github.com/wildcodeschoolparis/js-training.git

# change working directory to the newly cloned repository
cd js-training

# get on your own branch
git checkout -b mybranch

Solving

You can start editing the javascript files with your favorite text editor.

# Sublime Text
subl primitive.js

# VSCode
code primitive.js

# Vim
vim primitive.js

# I can not be held responsable if you use anything else.

where-to-code

Testing

Once you edit

You may use our test tool to check all files

# run the test runner
./tester

output-tester

Or you can test files one by one with node

node primitive.js

output-node