y78 (typeryo)

Race #539

View Pit Stop page for race #539 by typeryoGhost race

View profile for y78 (typeryo)

Official speed 45.13 wpm (80.04 seconds elapsed during race)
Race Start August 27, 2023 7:57:07am UTC
Race Finish August 27, 2023 7:58:27am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 34.60
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.'; } }