We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
It turns out that this...
rect.x.baseVal.value = 200;
...is faster than this:
rect.setAttribute('x', 200);
This might be something we can use to our benefit.