I have a newbie question I log the following object
1) data
2) data.files
3) data.length (-> 0)
4) data.files[0] (-> undefined)
Here is a the console log for data object
{}
files: Array [ "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAzMAA......]
Here is the console.log of data.files
[]
0: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAzMAAADKCAYAAACR3h76AAAYfWlDQ1BJQ0MgUHJvZmlsZQAAWIWVWQdUFEu......."
length: 1
Here is the gog of data.files.length
0
Here is the log of data.files[0]
undefined
I don't understand why data.files[0] is undefined