Skip to content

Commit c2a4e1f

Browse files
committed
fix: string
1 parent 51a63b1 commit c2a4e1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

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

1313
To invoke an alert that lives in the engine v8; we need to
14-
run `alert("Hi there!")`
14+
run `alert("Hello word")`
1515

1616

1717
What effect does calling the `alert` function have?
@@ -32,7 +32,7 @@ Now try invoking the function `prompt` with a string input of `"What is your nam
3232
let myName = prompt("What is your name");
3333
alert("hi " + myName);
3434

35-
The prompt function displays a modal dialog that captures user input. The value entered is stored in myName, and alert then displays a greeting that includes that value input captured by the variable myName.
35+
The prompt function displays a modal dialog that captures user input. The value entered is stored in myName, and alert then displays a greeting that includes the value stored in the variable myName.
3636

3737

3838
What effect does calling the `prompt` function have?

0 commit comments

Comments
 (0)