Hasan (hasan_2809)

Race #20

View Pit Stop page for race #20 by hasan_2809Ghost race

View profile for Hasan (hasan_2809)

Official speed 31.95 wpm (113.05 seconds elapsed during race)
Race Start July 1, 2023 9:38:32am UTC
Race Finish July 1, 2023 9:40:25am UTC
Outcome No win (2 of 3)
Accuracy 91.0%
Points 24.49
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.'; } }