mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
929 B
929 B
The Four Seasons
Sometimes we don't need a key, we just want a list of things, JS has a special type for that
Arrays
Let's see an example of an Array
:
let numberArray = [
10, // <- no keys !
20,
30,
40,
]
// or for brievety, we often write them on a single line like so:
let numberArray = [10, 20, 30, 40]
Arrays
are like objects but use []
square bracket delimiters and only
specify values.
The key
of an element of an array is its position, starting from 0
. We call
that its index
So our numberArray
is roughly equivalent to writing this object:
let numberObject = {
0: 10,
1: 20,
2: 30,
3: 40,
}
Instructions
You must declare a variable seasons
that contains 4 strings, one for each
seasons.
Starting with Spring, like the work of the Maestro Vivaldi.