Skip to content

Commit

Permalink
create array with values example fix
Browse files Browse the repository at this point in the history
  • Loading branch information
npnjuguna authored Jan 6, 2020
1 parent d16e822 commit c636461
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions 05_Day/05_day_arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,19 +80,19 @@ console.log('Numbers:', numbers)
console.log('Number of numbers:', numbers.length)

console.log('Fruits:', fruits)
console.log('Number of fruits:', len(fruits))
console.log('Number of fruits:', fruits.length)

console.log('Vegetables:', vegetables)
console.log('Number of vegetables:', len(vegetables))
console.log('Number of vegetables:', vegetables.length)

console.log('Animal products:', animalProducts)
console.log('Number of animal products:', len(animalProducts))
console.log('Number of animal products:', animalProducts.length)

console.log('Web technologies:', web_techs)
console.log('Number of web technologies:', len(webTechs))
console.log('Web technologies:', webTechs)
console.log('Number of web technologies:', webTechs.length)

console.log('Countries:', countries)
console.log('Number of countries:', len(countries))
console.log('Number of countries:', countries.length)
```

```sh
Expand Down Expand Up @@ -721,4 +721,4 @@ const webTechs = [
🎉 CONGRATULATIONS ! 🎉
[<< Day 4](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/04_Day/04_day_conditionals.md) | [Day 6 >>](#)
[<< Day 4](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/04_Day/04_day_conditionals.md) | [Day 6 >>](#)

0 comments on commit c636461

Please sign in to comment.