Skip to content

Commit 0e5b329

Browse files
committed
Complete Chrome console stretch task
1 parent 4b2b429 commit 0e5b329

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

‎Sprint-2/4-stretch-explore/chrome.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@ Let's try an example.
88
In the Chrome console, invoke the function `alert` with one argument, the string `"Hello world!"`;
99

1010
What effect does calling the `alert` function have?
11+
It shows a pop-up dialog box with the message "Hello world!" and pauses the browser until the user closes it.
1112

1213
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`.
1314

1415
What effect does calling the `prompt` function have?
16+
It displays a dialog box asking the user for input.
17+
1518
What is the return value of `prompt`?
19+
The return value is the text entered by the user as a string. If the user cancels the prompt, it returns `null`.

0 commit comments

Comments
 (0)