goofy goober (2chill4u_top)

Race #3

View Pit Stop page for race #3 by 2chill4u_topGhost race

View profile for goofy goober (2chill4u_top)

Official speed 34.19 wpm (105.64 seconds elapsed during race)
Race Start June 30, 2023 6:08:52pm UTC
Race Finish June 30, 2023 6:10:38pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 26.22
Text #10015 (Length: 301 characters)

function calculateArea(width, height) { try { var area = width * height; if (!isNaN(area)) { return area; } else { throw new Error('calculateArea() received invalid number'); } } catch(e) { console.log(e.name + ' ' + e.message); return 'We were unable to calculate the area.'; } }