Kevin (kytrex)

Race #4

View Pit Stop page for race #4 by kytrexGhost race

View profile for Kevin (kytrex)

Official speed 41.86 wpm (86.29 seconds elapsed during race)
Race Start June 2, 2023 4:44:18am UTC
Race Finish June 2, 2023 4:45:44am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 32.09
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.'; } }