Hello everybody, I'm back
😄 I have a strange line in the debugger console that i don't understand, and i found only two posts when i typed it in the search box, but they don't have the answer i am looking for.
My code is very simple :
Function Photo_URL(Number_Array as object) as object
print Number_Array
photo_url = []
for each n in Number_Array
url = "http://www.mywebsite.com/photo" + n + ".jpg"
print url
photo_url.Push(url)
print photo_url
end for
print photo_url
return photo_url
end Function
Number_Array is an array that i create in my Main(), it contains all the numbers between 0 and 9 included (the print Number_Array gives me the list, so i think the array is not the problem), but instead of getting an array of strings that are the urls to my photos, i have 10 urls and 11 lines of:
<bsTypedValue: Function>
10 lines for the print functions inside the loop, and one for the final array.
Does anyone knows what it means please?
Thank you.