Suppose I’m developing a front-end card written in JS. I need to use a bunch of timers, 4 per user, and it’s a nuisance (and error prone) to make everybody create all of that manually.
I’d like to be able to have my code check if the timers exist, and in case they don’t, to create them. Is this possible? How?
Thanks in advance for any help.