Docs(DPxAI): Modify subject for first-wink

This commit is contained in:
oumaimafisaoui 2024-08-19 20:52:07 +01:00 committed by Oumaima Fisaoui
parent 38895e7b8f
commit e985d3fbce
1 changed files with 3 additions and 4 deletions

View File

@ -53,14 +53,13 @@ button {
#### Task 2:
Select the button with id `button` in your JavaScript file that will allow the user to control the robots left eye.
Select the button in your JavaScript file that will allow the user to control the robots left eye.
```js
// Select the button element using its ID so we can interact with it in our JavaScript
//Example of selecting a button with "small" as an id
const myButton = document.querySelector("#small");
//Example of selecting a button called myButton
const myButton = document.querySelector("button");
```
**`Prompt Example:`**