mairzydoats_mason (mairzydoats_mason)

Race #583

View Pit Stop page for race #583 by mairzydoats_masonGhost race

View profile for mairzydoats_mason (mairzydoats_mason)

Official speed 58.33 wpm (57.60 seconds elapsed during race)
Race Start December 24, 2020 7:03:57pm UTC
Race Finish December 24, 2020 7:04:55pm UTC
Outcome Win (1 of 3)
Accuracy 100.0%
Points 44.72
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.'; } }