(jasimk)

Race #11

View Pit Stop page for race #11 by jasimkGhost race

View profile for (jasimk)

Official speed 37.89 wpm (95.33 seconds elapsed during race)
Race Start January 15, 2022 4:11:05pm UTC
Race Finish January 15, 2022 4:12:40pm UTC
Outcome No win (2 of 2)
Accuracy 95.0%
Points 29.05
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.'; } }