You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 1, 2021. It is now read-only.
* reverse string exercise
* 3 files for submission
* name updates
* more updates
* subject.matches is a function
* fixed array inputs
* modified matches
* spacing updates
* spacing updates #2
* spacing updates #3
* spacing updates #4
* config.json reverse string
* updated spec and example files
* updated spec and example files v2
* updated spec and example files v3
* updated spec and example files v4
* updated spec and example files v5
* updated spec and example files v6
Go through the setup instructions for JavaScript to
11
+
install the necessary dependencies:
12
+
13
+
http://exercism.io/languages/javascript
14
+
15
+
## Making the Test Suite Pass
16
+
17
+
Execute the tests with:
18
+
19
+
jasmine <exercise-name>.spec.js
20
+
21
+
Replace `<exercise-name>` with the name of the current exercise. E.g., to
22
+
test the Reverse String exercise:
23
+
24
+
jasmine reverse-string.spec.js
25
+
26
+
In many test suites all but the first test have been skipped.
27
+
28
+
Once you get a test passing, you can unskip the next one by
29
+
changing `xit` to `it`.
30
+
31
+
## Source
32
+
33
+
This is an exercise to introduce users to using Exercism and arrays and strings [https://medium.freecodecamp.org/how-to-reverse-a-string-in-javascript-in-3-different-ways-75e4763c68cb](https://medium.freecodecamp.org/how-to-reverse-a-string-in-javascript-in-3-different-ways-75e4763c68cb)
34
+
35
+
## Submitting Incomplete Solutions
36
+
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
0 commit comments