--- id: 5d7925379e2a488f333e2d43 title: Part 80 challengeType: 0 dashedName: part-80 --- # --description-- Now define a function `createLabel` which takes an argument `name` and has an empty body. # --hints-- See description above for instructions. ```js assert( /window\.onload[\s\S]*constcreateLabel=\(?name\)?=>\{\}/.test( code.replace(/\s/g, '') ) ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```