sasquatch (sasquatchplatypus)

Race #3

View Pit Stop page for race #3 by sasquatchplatypusGhost race

View profile for sasquatch (sasquatchplatypus)

Official speed 33.54 wpm (107.69 seconds elapsed during race)
Race Start April 15, 2021 10:50:28am UTC
Race Finish April 15, 2021 10:52:15am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 25.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.'; } }