mairzydoats_mason (mairzydoats_mason)

Race #589

View Pit Stop page for race #589 by mairzydoats_masonGhost race

View profile for mairzydoats_mason (mairzydoats_mason)

Official speed 57.01 wpm (58.94 seconds elapsed during race)
Race Start January 1, 2021 5:47:15pm UTC
Race Finish January 1, 2021 5:48:14pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 43.71
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.'; } }