Also, I don't see any documentation for returning in the Proxy function. Is this just a code style thing or is return true useful for something in this case?
Thanks Lucas for your comment, if you check out the code and demo (I should maybe include that in the post) you will see that it's more generic :) return true is necessary, otherwise, you will get an error:
I like this, I didn't do anything with Proxies before.
One thing with this demo is that it will only update
state.quote, with a few changes it can be generic and you can update multiple elements.Also, I don't see any documentation for returning in the Proxy function. Is this just a code style thing or is
return trueuseful for something in this case?Thanks Lucas for your comment, if you check out the code and demo (I should maybe include that in the post) you will see that it's more generic :)
return trueis necessary, otherwise, you will get an error:developer.mozilla.org/en-US/docs/W...
Gotcha. Thanks