kketamine (kketamine)

Race #5

View Pit Stop page for race #5 by kketamineGhost race

View profile for kketamine (kketamine)

Official speed 40.05 wpm (90.19 seconds elapsed during race)
Race Start January 9, 2022 3:47:42am UTC
Race Finish January 9, 2022 3:49:12am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 30.70
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.'; } }