MrBoombastic (mr_boombaastic)

Race #66

View Pit Stop page for race #66 by mr_boombaasticGhost race

View profile for MrBoombastic (mr_boombaastic)

Official speed 48.72 wpm (74.14 seconds elapsed during race)
Race Start July 16, 2021 4:36:57am UTC
Race Finish July 16, 2021 4:38:11am UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 37.35
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.'; } }