Skip to content

Add source syntax examples to workshop #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 6, 2020
Merged
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
8 changes: 5 additions & 3 deletions javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Each step has a **Solution** that indicates one possible answer. Note that all q

### Finding calls to the jQuery `$` function <a id="section1"></a>

1. Find all function call expressions.
1. Find all function call expressions, such as `alert("hello world")` and `speaker.sayHello("world")`.
<details>
<summary>Hint</summary>

Expand All @@ -86,7 +86,8 @@ Each step has a **Solution** that indicates one possible answer. Note that all q
```
</details>

1. Identify the expression that is used as the first argument for each call.
1. Identify the expression that is used as the first argument for each call, , such as `alert(<first-argument>)` and `speaker.sayHello(<first-argument>)`.

<details>
<summary>Hint</summary>

Expand All @@ -104,7 +105,8 @@ Each step has a **Solution** that indicates one possible answer. Note that all q
```
</details>

1. Filter your results to only those calls to a function named `$`.
1. Filter your results to only those calls to a function named `$`, such as `$("hello world")` and `speaker.$("world")`.

<details>
<summary>Hint</summary>

Expand Down