It turns out that this... ```js rect.x.baseVal.value = 200; ``` ...is faster than this: ```js rect.setAttribute('x', 200); ``` This might be something we can use to our benefit.