--- id: 5d7925371398513549bb6395 title: Step 90 challengeType: 0 dashedName: step-90 --- # --description-- In the global scope, define a function called `update` which takes `event` as argument. It should define a variable, `element`, setting it to `event.target`. # --hints-- See description above for instructions. ```js assert( /constupdate=\(?event\)?=>\{?constelement=event\.target;?\}?/.test( code.replace(/\s/g, '') ) ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```