Fixed - Links not working for previous and next.

pull/230/head
Anuj Raghuvanshi 4 years ago committed by GitHub
parent 07143be3b7
commit 10afe630ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -415,9 +415,10 @@ const countries = ['Finland', 'Sweden', 'Norway']
1. \*\*\* Use the countries data to find the 10 most spoken languages:
```js
// Your output should look like this
console.log(mostSpokenLanguages(countries, 10))[
```js
// Your output should look like this
console.log(mostSpokenLanguages(countries, 10))
[
({ English: 91 },
{ French: 45 },
{ Arabic: 25 },
@ -429,23 +430,18 @@ const countries = ['Finland', 'Sweden', 'Norway']
{ Chinese: 5 },
{ Swahili: 4 },
{ Serbian: 4 })
]
// Your output should look like this
console.log(mostSpokenLanguages(countries, 3))
```
]
// Your output should look like this
console.log(mostSpokenLanguages(countries, 3))
[
{'English':91},
{'French':45},
{'Arabic':25}
{'English':91},
{'French':45},
{'Arabic':25}
]
```
🎉 CONGRATULATIONS ! 🎉
[<< Day 9](../09_Day_Higher_order_functions/09_day_higher_order_functions.md) | [Day 11>>](../11_Day_Destructuring_and_spreading/11_day_destructuring_and_spreading.md)
```

Loading…
Cancel
Save