(jasimk)

Race #10

View Pit Stop page for race #10 by jasimkGhost race

View profile for (jasimk)

Official speed 44.18 wpm (81.76 seconds elapsed during race)
Race Start December 24, 2021 1:43:29pm UTC
Race Finish December 24, 2021 1:44:51pm UTC
Outcome No win (2 of 2)
Opponents 1. gospell (53.26 wpm)
Accuracy 92.0%
Points 33.87
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.'; } }