Formatting arrays correctly
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
let data = inputData.sz.split(','); //Where sz is the name of the input data you picked above
let array = [];
data.forEach(item => array.push(item));
array.push("178375") //The ID of your secure zone
output = {output: JSON.stringify(array)};