How can I efficiently maintain array in workshop?

78 Views Asked by At

I have a string array in workshop that I use to store kind of temporary data in workshop. For now what I am doing is automatically computing the array(basically push/pop operation) using typescript functions and inside workshop on event click I am storing the computed array to some other variable to make it persistent inside workshop.

But one issue I am facing sometimes set variable event is triggering even before the function based array variable is computed properly.

So is there any way to push/pop elements into array inside workshop or how can I optimize this approach?

0

There are 0 best solutions below