(e6f4e37l)

Race #27

View Pit Stop page for race #27 by e6f4e37lGhost race

View profile for (e6f4e37l)

Official speed 109.14 wpm (33.10 seconds elapsed during race)
Race Start July 4, 2021 4:56:13am UTC
Race Finish July 4, 2021 4:56:46am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 83.68
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.'; } }