Hi everyone,
I would like to understand the execution logic of these two functions .....
function 1405
const output = [null, null, null, null, null];
output[0] = { payload: 0, topic: "Test" }
output[1] = { payload: 1, topic: "Test" }
output[2] = { payload: 2, topic: "Test" }
output[3] = { payload: 3, topic: "Test" }
output[4] = { payload: 4, topic: "Test" }
return output;
function 1406
const output = [null, null, null, null, null];
output[0] = { payload: 5, topic: "Test" }
output[1] = { payload: 6, topic: "Test" }
output[2] = { payload: 7, topic: "Test" }
output[3] = { payload: 8, topic: "Test" }
output[4] = { payload: 9, topic: "Test" }
return output;
If I create and save (deploy) the functions together I have an output with a certain order, if I delete the link and save (deploy) first one then the other the order the order changes.
I have the opportunity to know which is the first function which will be performed and possibly change the order?