array different data types example fix

pull/22/head
Patrick Njuguna 6 years ago committed by GitHub
parent d16e82245a
commit 148abe0792
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)
```
@ -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 >>](#)

Loading…
Cancel
Save