Go to file
Cody Loyd 7facb382ac update gitignore 2017-12-15 12:57:30 -06:00
caesar remove timer and simon 2017-12-15 12:56:14 -06:00
calculator remove timer and simon 2017-12-15 12:56:14 -06:00
fibonacci solutions 2017-12-15 11:01:24 -06:00
generator-exercise add generator and repeatString 2017-08-21 10:28:29 -05:00
helloWorld add hints to exercises 2017-10-24 15:10:20 -05:00
leapYears leap years solution 2017-12-14 15:35:45 -06:00
node_modules remove timer and simon 2017-12-15 12:56:14 -06:00
palindromes palindrome solution 2017-12-15 11:15:57 -06:00
pig_latin piglatin 2017-12-15 12:52:22 -06:00
removeFromArray remove timer and simon 2017-12-15 12:56:14 -06:00
repeatString remove timer and simon 2017-12-15 12:56:14 -06:00
reverseString remove timer and simon 2017-12-15 12:56:14 -06:00
snakeCase add snakeCase 2017-08-25 14:16:42 -05:00
sumAll add hints to exercises 2017-10-24 15:10:20 -05:00
tempConversion remove timer and simon 2017-12-15 12:56:14 -06:00
.DS_Store Fixed folder titles 2017-09-22 17:32:56 -04:00
.eslintrc.js remove timer and simon 2017-12-15 12:56:14 -06:00
.gitignore update gitignore 2017-12-15 12:57:30 -06:00
README.md Update README.md 2017-09-20 13:35:31 -05:00
package-lock.json remove timer and simon 2017-12-15 12:56:14 -06:00
package.json remove timer and simon 2017-12-15 12:56:14 -06:00

README.md

These are a series of javascript exercises intended to be used alongside the curriculum at 'The Odin Project' They start very simply, but get more involved as you progress through them.

There will eventually be a suggested order of completion, but at this time since we are still in the process of creating more exercises the order is subject to change and has not yet been specified... In general however there are a couple which make a good "starting point" feel free to at least start with these:

  1. Hello World
  2. Repeat String
  3. Reverse String

HOW TO USE THESE EXERCISES

Before you start you should have a few things installed on your machine:

  1. NodeJS. To check if you have it type node -v in a terminal. If you get back a number that means you've got it installed. If not, you have a few options, check here.
  • INSERT LINK TO INSTALLING NODEJS WITH NVM HERE.
  1. Jasmine. Jasmine is a testing framework for Javascript. Type jasmine -v to check for it. If you need to install it type npm install -g jasmine to do so.

Each exercise includes 3 files, a markdown file with a description of the task, an empty (or mostly empty) javascript file, and a set of tests. To complete the exercise go to the exercise directory in a terminal and run jasmine filename.spec.js. This should find and run the test file and show you the output. Upon first running the tests you will find that the tests fail: this is by design! Your task is to open up the javascript file and write the code needed to get all of the tests to pass.

The first exercise, helloWorld will walk you through the process in more depth.

planned exercises (in no particular order for the moment):

  1. count vowels, count specific letter
  2. book tracker. save books, return unread, read, books by rating etc.
  3. credit card number validation
  4. Scrabble Score