|
6 | 6 | |---- | --------- |
7 | 7 | |1|[Generate a random number in a given range](#How-to-generate-a-random-number-in-a-given-range)| |
8 | 8 | |2|[Find the difference between two arrays](#How-to-find-the-difference-between-two-arrays)| |
9 | | -|3|[Convert truthy/falsy to boolean(true/false)](#Convert_truthy/falsy_to_boolean(true/false))| |
| 9 | +|3|[Convert truthy/falsy to boolean(true/false)](#Convert_truthy_falsy_to_boolean)| |
10 | 10 | |4|[Repeat a string](#Repeat_a_string)| |
11 | 11 | |5|[Check how long an operation takes](#Check_how_long_an_operation_takes)| |
12 | 12 | |6|[Two ways to remove an item in a specific in an array](#Two_ways_to_remove_an_item_in_a_specific_in_an_array)| |
@@ -78,7 +78,8 @@ console.log('difference',difference(firstArr, secondArr)) |
78 | 78 | ``` |
79 | 79 |
|
80 | 80 | **[⬆ Back to Top](#table-of-contents)** |
81 | | -###Convert truthy/falsy to boolean(true/false) |
| 81 | +###Convert truthy falsy to boolean |
| 82 | + |
82 | 83 | ```javascript |
83 | 84 | constmyVar=null; |
84 | 85 | constmySecondVar=1; |
|