Skip to content

Commit

Permalink
array different data types 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 148abe0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions 05_Day/05_day_arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ Number of countries: 5

```js
const arr = [
'Asabeneh',
250,
True,
{ country: 'Finland', city: 'Helsinki' },
(skills: ['HTML', 'CSS', 'JS', 'React', 'Python'])
'Asabeneh',
250,
true,
{ country: 'Finland', city: 'Helsinki' },
{ skills: ['HTML', 'CSS', 'JS', 'React', 'Python'] }
] // arr containing different data types
console.log(arr)
```
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 148abe0

Please sign in to comment.