Hay, i have the following list
var feedObjects = {
0:[
"url",
"image"
],
1:[
"url",
"image"
]
}
However when i try doing feedObjects.length it always returns null, any ideas?
|
Hay, i have the following list
However when i try doing feedObjects.length it always returns null, any ideas? |
|||||
|
|
You have an You will need to iterate over it with Better still, swap |
|||||||||||
|
|
|
You have declared an associative array, not an indexed array. Try this
|
|||
|
|
|
Your object doesn't have a length property or method- you need to count its members.
returned value: (Number)=2 or define an array:
//feedObjects.length=2; |
|||
|
|
|
|||
|
|