Browse Source

Chore(AI-GO): Run prettier to fix formatting

pull/2731/head
Oumaima Fisaoui 4 weeks ago
parent
commit
79d92e8382
  1. 2
      subjects/AI.GO/first-move/README.md
  2. 2
      subjects/AI.GO/good-recipe/README.md
  3. 2
      subjects/AI.GO/i-win-arguments/README.md

2
subjects/AI.GO/first-move/README.md

@ -37,7 +37,7 @@ Second, [Link a JS script](https://developer.mozilla.org/en-US/docs/Web/HTML/Ele
#### Task 2
Then in your Javascript file, you're going to close the left eye of your entity. To do so, you have to first target the `eye-left` HTML element by its `id` using the [getElementById](https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById) method.
Then in your Javascript file, you're going to close the left eye of your entity. To do so, you have to first target the `eye-left` HTML element by its `id` using the [getElementById](https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById) method.
#### Task 3

2
subjects/AI.GO/good-recipe/README.md

@ -54,7 +54,7 @@ Using the `.slice` method to cut parts of a string:
let numbers = "0123456789";
let firstNumbers = numbers.slice(5); // '6789'
let lastNumbers = numbers.slice(0, -3); // '0123456'
let cutBothSides= numbers.slice(2, -3); // '23456'
let cutBothSides = numbers.slice(2, -3); // '23456'
```
### Splitting Strings

2
subjects/AI.GO/i-win-arguments/README.md

@ -149,7 +149,7 @@ As the leader of the RoboGuard forces, you're not just preparing for battle—yo
- This function will take `three arguments`: the **names** of two robots and the **task** they will perform together.
- It will `log them` together in a sentence describing their task with the same formatting than below.
- It will `log them` together in a sentence describing their task with the same formatting than below.
> Output's example: "robotOne and robotTwo are saying hi!

Loading…
Cancel
Save