The map function is defined with `function map(con...
# suitescript
w
The map function is defined with
function 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.