wjamieson
09/08/2017, 12:32 PMfunction map(context)
- that context parameter represents each entry in the array you return in getInputData(). So if you return an array of [1, 2, 3] then at the top of map() you have var Value = context.value
. This would mean that map() gets called 3 times, with Value being 1, 2 and then 3 accordingly.