--- id: 5d8a4cfbe6b6180ed9a1ca31 title: Part 84 challengeType: 0 dashedName: part-84 --- # --description-- Add two `attr` functions that set the `width` and `height` of the new SVG to `200`. # --hints-- test-text ```js assert( $('svg')[1].getAttribute('width') == '200' && $('svg')[1].getAttribute('height') == '200' ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```