1 résultat trouvé

par heelversion
Hier, 09:17
Forum : Javascript
Sujet : How can I track changes of multiple variables at once in JavaScript without using a framework?
Réponses : 1
Vues : 988

Re: How can I track changes of multiple variables at once in JavaScript without using a framework?

Hey! I’ve played around with something similar in a side project, and yeah—it can get messy fast if you’re not careful 😅 I ended up using a Proxy because it felt cleaner than juggling Object.define Property for each variable. What helped me was wrapping all the variables into a single object and the...