Skip to content

Commit 8d1d385

Browse files
committed
Revert "Work on 4-stretch-explore"
This reverts commit 9ebcb3e.
1 parent 9452041 commit 8d1d385

2 files changed

Lines changed: 0 additions & 8 deletions

File tree

Sprint-1/4-stretch-explore/chrome.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,8 @@ In the Chrome console,
1111
invoke the function `alert` with an input string of `"Hello world!"`;
1212

1313
What effect does calling the `alert` function have?
14-
this shows a dialogue window with "Hello world!"
1514

1615
Now try invoking the function `prompt` with a string input of `"What is your name?"` - store the return value of your call to `prompt` in an variable called `myName`.
1716

1817
What effect does calling the `prompt` function have?
1918
What is the return value of `prompt`?
20-
21-
this shows a dialogue window with an input field so you can input data
22-
the return value of prompt is whatever user put into the dialogue

Sprint-1/4-stretch-explore/objects.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,12 @@ In this activity, we'll explore some additional concepts that you'll encounter i
55
Open the Chrome devtools Console, type in `console.log` and then hit enter
66

77
What output do you get?
8-
I get function log()
98

109
Now enter just `console` in the Console, what output do you get back?
11-
I get Console { assert: assert(), clear: clear(), count: count(), countReset: countReset...
1210

1311
Try also entering `typeof console`
1412

1513
Answer the following questions:
1614

1715
What does `console` store?
18-
console is a class that store a lot of functions related to console output and input
1916
What does the syntax `console.log` or `console.assert` mean? In particular, what does the `.` mean?
20-
this means to access the function log from the class console

0 commit comments

Comments
 (0)