Kharinandan (theunbeatenseven)

Race #20

View Pit Stop page for race #20 by theunbeatensevenGhost race

View profile for Kharinandan (theunbeatenseven)

Official speed 28.07 wpm (128.68 seconds elapsed during race)
Race Start April 22, 2022 3:45:10am UTC
Race Finish April 22, 2022 3:47:19am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 21.52
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.'; } }