I have an array, and I want to pass it as a parameter in a function such as:
function something(arrayP){ for(var i = 0; i < arrayP.length; i++){ alert(arrayP[i].value); } }
I'm getting that arrayP[0] is undefined, which might be true as inside the function I never wrote what kind of array arrayP is. So,
As such, Javascript provides us with two ways to use arrays as function parameters in Javascript - apply() and the spread operator.
Arrays can be passed as arguments to method parameters. Because arrays are reference types, the method can change the value of the elements.
arguments is an Array -like object accessible inside functions that contains the values of the arguments passed to that function.
Just remove the .value
, like this:
function(arrayP){ for(var i = 0; i < arrayP.length; i++){ alert(arrayP[i]); //no .value here } }
Sure you can pass an array, but to get the element at that position, use only arrayName[index]
, the .value
would be getting the value
property off an object at that position in the array - which for things like strings, numbers, etc doesn't exist. For example, "myString".value
would also be undefined
.
JavaScript is a dynamically typed language. This means that you never need to declare the type of a function argument (or any other variable). So, your code will work as long as arrayP
is an array and contains elements with a value
property.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With