dotdotdot (atuladhar1)

Race #410

View Pit Stop page for race #410 by atuladhar1Ghost race

View profile for dotdotdot (atuladhar1)

Official speed 69.80 wpm (51.75 seconds elapsed during race)
Race Start July 22, 2023 12:53:43am UTC
Race Finish July 22, 2023 12:54:35am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 53.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.'; } }