kketamine (kketamine)

Race #10

View Pit Stop page for race #10 by kketamineGhost race

View profile for kketamine (kketamine)

Official speed 45.38 wpm (79.59 seconds elapsed during race)
Race Start January 9, 2022 4:01:33am UTC
Race Finish January 9, 2022 4:02:52am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 34.79
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.'; } }