Last active
May 23, 2022 00:04
-
-
Save anibal21/ea78cf16546ac9ec51d073a994732b3d to your computer and use it in GitHub Desktop.
Javascript - The definitive guide - David Flanagan - Arrays Chapter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Theory: | |
-Arrays in JavaScript are an ordered collection of values | |
-Its elements are untyped, an array can contain different types of data | |
-Arrays are 32-bit indexed so its index can be from 0-4294967294 (2^32 - 2) | |
and its elements can go from 0 to 4.294.967.295 | |
*/ | |
/** | |
* Relevant Examples | |
*/ | |
// Dynamic Sizing | |
let names = ["Anibal", "Peter"] | |
console.log(names.length) // 2 | |
names[10] = "Lucas" | |
console.log(names.length) // 11 | |
//Creating arrays | |
let literalArray = [1,2,3] | |
let spreadOperatorArrays = [...literalArray] // copy of [1,2,3] | |
let arrayConstructor = new Array() | |
let arrayOf = Array.of(1,2,3) // [1,2,3] | |
let arrayFrom = Array.from(literalArray) // copy of [1,2,3] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment