Skip to content

Latest commit

 

History

History
106 lines (86 loc) · 3.37 KB

README.md

File metadata and controls

106 lines (86 loc) · 3.37 KB

Exercism JavaScript Answers

DeepScan grade

Exercism.io provides practice problems and mentorship for many programming langauges. This repository contains my solutions to the "JavaScript Track".

As with all exercism tracks, I practice creating these solutions to acquire a basic knowledge of the syntax and built-in functionality of the language, as well as improved fluency in reading and writing idiomatic code for the language.

Exercises

Hard

Medium

Easy

Running Tests

For each solution, install dependencies (I use yarn), then run the package test script. Check the README for further instructions.

yarn && yarn test

To run all the tests, use the test_all.sh script.

sh _scripts/test_all.sh

Alternatively, tests can be run from a container using the 'Dockerfile'. Tests will run on build.

docker build --tag exercism-javascript-answers:latest .

Why Yarn?

When I first began developing this project, Yarn performed much better due to its package caching.