(atorpy)

Race #8

View Pit Stop page for race #8 by atorpyGhost race

View profile for (atorpy)

Official speed 48.91 wpm (73.85 seconds elapsed during race)
Race Start May 23, 2022 5:19:34pm UTC
Race Finish May 23, 2022 5:20:48pm UTC
Outcome No win (1 of 1)
Accuracy 94.0%
Points 37.50
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.'; } }