Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
awongh authored Jul 1, 2019
1 parent bc70f14 commit d485124
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ You can type `clear` to clear the elements out of the DOM.
### Second Version
When you type `clear 2` it clears the 2nd row. (Note: you will need `.split` to get the 2 arguments out of this input string)

Example of split:
```js
var sentence = "Hello dogs";
var wordArray = sentence.split(" "); // we get ["Hello","dogs"];
```

### further
Add the ability to add multiple rows at a time.

Expand Down

0 comments on commit d485124

Please sign in to comment.