Hello (arnab_9997)

Race #16

View Pit Stop page for race #16 by arnab_9997Ghost race

View profile for Hello (arnab_9997)

Official speed 48.08 wpm (75.12 seconds elapsed during race)
Race Start March 5, 2022 7:18:32am UTC
Race Finish March 5, 2022 7:19:47am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 36.86
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.'; } }