Merge pull request #22 from npnjuguna/npnjuguna-array-different-data-types-example-fix

array different data types example fix
pull/25/head
Asabeneh 6 years ago committed by GitHub
commit 65d269a438
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)
```

Loading…
Cancel
Save