zulfaqar (zulf1212)

Race #3

View Pit Stop page for race #3 by zulf1212Ghost race

View profile for zulfaqar (zulf1212)

Official speed 38.59 wpm (93.60 seconds elapsed during race)
Race Start July 4, 2023 7:01:19am UTC
Race Finish July 4, 2023 7:02:53am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 29.59
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.'; } }