patevis (whimp)

Race #16

View Pit Stop page for race #16 by whimpGhost race

View profile for patevis (whimp)

Official speed 49.44 wpm (73.06 seconds elapsed during race)
Race Start June 18, 2023 7:44:23am UTC
Race Finish June 18, 2023 7:45:36am UTC
Outcome No win (2 of 2)
Accuracy 93.0%
Points 37.90
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.'; } }