--- id: 5d7925385b74f69642e1fea5 title: Part 102 challengeType: 0 dashedName: part-102 --- # --description-- Obviously, this was ignored, as all `highPrecedence` does is return a value and this value is ignored. Now compare `highPrecedence("2*2")` with `highPrecedence("2*2")`, and `console.log` the result. # --hints-- See description above for instructions. ```js assert( /update=\(?event\)?=>\{.*console\.log\((highPrecedence\(['"]2\*2['"]\))===\1\).*\}/.test( code.replace(/\s/g, '') ) ); ``` # --seed-- ## --before-user-code-- ```html Spreadsheet
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```