Skip to content

Commit c6d36d8

Browse files
Merge pull request #23 from PracticeJavaScript/readme
Readme
2 parents dc8b9f5 + 7ebbe00 commit c6d36d8

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
1-
# Practice JavaScript using game stuffs
1+
# Practice JavaScript using this fun game
22

33
[ ![Codeship Status for PracticeJavaScript/practicejavascript.com](https://app.codeship.com/projects/091c0e50-0a7c-0135-8b3c-6ed4d7e33e57/status?branch=master)](https://app.codeship.com/projects/214753)
44
[![Build Status](https://travis-ci.org/PracticeJavaScript/practicejavascript.com.svg?branch=master)](https://travis-ci.org/PracticeJavaScript/practicejavascript.com)
55

6-
- Should be rote, easy problems, to exercise mastery, rather than solving brain puzzles like other sites
6+
![ScreenShot of practicejavascript.com](https://cldup.com/I24bQvI37L.png)
7+
8+
## Principles
9+
- Fast, easy to start. No delays.
10+
- Keep it simple. As few visual elements as possible.
11+
- Never leave the keyboard.
12+
- Fast and rewarding feedback loop like a mobile game. Obey ["Doherty Threshold"](http://daverupert.com/2015/06/doherty-threshold/)
13+
14+
15+
- True katas should be rote, easy problems, solved a variety of ways, to exercise mastery, rather than solving longer brain puzzles like other sites
716
- Should be solvable in under 30 seconds each
817

918

src/problems/arrays.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ module.exports = [
472472
{
473473
name: 'Array.filter()',
474474
time: 10,
475-
prompt: `return an array of the numbers greater than 5 in 'fruits' using 'Array.filter()'`,
475+
prompt: `Return an array of the numbers greater than 5 in 'fruits' using 'Array.filter()'`,
476476
given: `const numbers = [1, 1, 2, 3, 5, 8, 13, 21];\r`,
477477
answer: `const numbers = [1, 1, 2, 3, 5, 8, 13, 21];
478478
const overFive = numbers.filter(num => num > 5);

0 commit comments

Comments
 (0)