Akiraming (akiraming)

Race #61

View Pit Stop page for race #61 by akiramingGhost race

View profile for Akiraming (akiraming)

Official speed 45.68 wpm (79.07 seconds elapsed during race)
Race Start July 21, 2023 6:56:13am UTC
Race Finish July 21, 2023 6:57:33am UTC
Outcome No win (2 of 3)
Accuracy 99.0%
Points 35.02
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.'; } }