(keegant)

Race #131

View Pit Stop page for race #131 by keegantGhost race

View profile for (keegant)

Official speed 81.16 wpm (44.50 seconds elapsed during race)
Race Start September 29, 2021 10:05:26am UTC
Race Finish September 29, 2021 10:06:10am UTC
Outcome No win (1 of 1)
Accuracy 96.0%
Points 62.22
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.'; } }