complete-intro-to-web-dev-v3
complete-intro-to-web-dev-v3 copied to clipboard
Spelling mistake in javascript/arrays
https://btholt.github.io/complete-intro-to-web-dev-v3/lessons/javascript/arrays
You first can see how we declare an array, using [ ]. Inside of an array, you can store anything you can store in a variable. You can have an array of numbers, an arry of strings, an array of objects, an array of arrays, an array of arrays of arrays, etc.
should be
You first can see how we declare an array, using [ ]. Inside of an array, you can store anything you can store in a variable. You can have an array of numbers, an array of strings, an array of objects, an array of arrays, an array of arrays of arrays, etc.