Jr.DevJobs Challenge: English Numbers
In this challenge you will create a webpage that will take a number and return the English translation.
You are free to do this in any language or framework, however the sample is written in JavaScript.
To begin, Fork this repository to your GitHub account by clicking the Fork icon in the upper-right section of this page.
If you're new to Forking, we suggest reading the GitHub documentation before moving forward.
As a user, I want to translate numbers into their English word form.
- Start with numbers less than one thousand then work your way up to one trillion
- Don't worry about connecting words with 'and'
- Make sure to strip out any commas
- 13: Thirteen
- 141: One hundred forty one
- 6,500,016: Six million five hundred thousand sixteen
We've included specs to test your code using Mochai and Chai.
- To run the tests, open
spec/spec-runner.html
in your browser