Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ String.length](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference
// The > is the REPL prompt. Don't type it!
> 'hi there'.____; // Replace ____ with working code.
8
> 'what's happening?'.____; // Replace ____ with working code.
> 'what\'s happening?'.____; // Replace ____ with working code.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hah! Thanks for catching this.

17
```
Let's swap some words around. [Docs for
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function getAnswer(entry) {
// Put your code here.
return entry.split(": ")[1];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops! Make sure you run git status and git diff so that you don't accidentally commit changes you didn't intend.

In this case, we can't merge this into the master repo. You should close this PR and re-open with the correct commit.

}


Expand Down