Skip to content

Commit a46ccf2

Browse files
authored
feat: review changes in iteration 3.2
1 parent bb18ace commit a46ccf2

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -166,14 +166,12 @@ const mixedArr = [6, 12, 'miami', 1, true, 'barca', '200', 'lisboa', 8, 10];
166166
```
167167

168168

169-
Note: if your function receives an array with anything different than numbers, strings or booleans (for example, if the array contains an object), you should [throw an error](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/throw). You can do that with something like this:
170-
169+
Note: Your function should only accept an array with numbers, strings, or booleans. If the array contains any other data type, such as an object, you should [throw an error](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/throw). In JavaScript, the syntax for throwing an error is as follows:
171170
```javascript
172-
throw new Error('oops, something went wrong...');
171+
throw new Error("Error message goes here");
173172
```
174173

175-
The tests expect you to throw an error with a *specific* message, check the file with the tests for more details 👀
176-
174+
When specifying the error message, you should be specific and descriptive in explaining the error.
177175

178176
<br>
179177

@@ -591,4 +589,4 @@ If the link shown is the same as the main Ironhack repository, you will need to
591589
592590
[Back to top](#faqs)
593591
594-
</details>
592+
</details>

0 commit comments

Comments
 (0)