-
What do arrays allow us to do?
They let you store multiple values in a single variable. -
What index should you use in order to access the first element in an array?
We start with 0.
-
Arrays are used to store multiple values in one variable.
-
Index 0.
- What do arrays allow us to do?
The Array object lets you store multiple values in a single variable. It stores a fixed-size sequential collection of elements of the same type. - What index should you use in order to access the first element in an array?
First index is 0
-
An array is an object that allows me to declare several values into a variable.
-
The first element is accessed by stating the index 0.
Example:
-
Arrays allow us to to store many different values in to one variable.
-
The index to be used in order that we can access the first element is the zero based index.
-
Arrays let us store multiple types of values in a single variable.
-
First element in the index should be [0]
- Arrays allows a coder to hold more than one valuable in a variable. 4,294,967,295 to be exact
- you will use an ordinal of numbers that contrast with the variable you would like to use in the code.
My native language doing tricks again when translating to english, thanks ^^
1.Arrays allows us to store multiple values in a single variable.
2.First element of an array has index 0 .It is written as x[0] to get it.
- It lets us to store multiple values in a single variable and collect variables of the same type.
. - It should be 0, since the property of an index represents the zero-based index of the match in the string of elements or in this case variables.
- What do arrays allow us to do?
Allows a coder to store multiple values into a single variable - What index should you use in order to access the first element in an array?
[0]
- Collect the same type in a single variable
- Var array = [“x’,”y”,”z”]
array [0];
- What do arrays allow us to do?
Arrow allow us to store multiples values with same type in a single variable.
- What index should you use in order to access the first element in an array?
indexOf()
Problem with you are not native english
Exactly and that sometimes can be seen from my writing because I don’t always see the mistakes
Hi @zinovsky,
I think there’s a slight confusion in your answer below.
indexOf
is used to figure out the index of a particular element in an array. The right answer would be the index 0. Index 0 is used to access the first element in the array.
Happy Learning
-
Arrays allow us to store multiple values of the same type in a single variable
-
The index to access the first element in an array is 0
- Array data type allows for for storing sequences of values.
2.First element is at index 0.
- What do arrays allow us to do? An array allows us to store a collection of data of the same type in a variable.
- What index should you use in order to access the first element in an array? Index [0], is the first element in an array.
-
What do arrays allow us to do?
array allows us to store sequences of values in one variable. -
What index should you use in order to access the first element in an array?
we should use index 0 to access the first element from the left.