Skip to content

Commit 0ad33e9

Browse files
committed
Include note on clearing the console
Fixes learn-co-students#9
1 parent ff04a7c commit 0ad33e9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ var specialGuest = "Neil deGrasse Tyson"
5757

5858
This is called _concatenation_. Notice that `specialGuest` is _also_ a string!
5959

60+
**TOP TIP**: Your console might be getting a little full at this point. If at any point you'd like to clear it out and start fresh, you can either click the button in the top left corner of the console — in Chrome, it looks like this:
61+
62+
![clear console](https://curriculum-content.s3.amazonaws.com/skills-based-js/clear_console.png)
63+
64+
Alternatively, you can press `ctrl + L` or `command + K`. As long as you don't refresh the page, anything you've declared will stick around for you to reference — you'll just get a nice blank slate on which to code.
65+
6066
When we wrap strings in back ticks, we can use placeholders (`${}`) and insert variables or evaluated JavaScript directly:
6167

6268
``` javascript

0 commit comments

Comments
 (0)