Hamza (hamza_g)

Race #60

View Pit Stop page for race #60 by hamza_gGhost race

View profile for Hamza (hamza_g)

Official speed 40.51 wpm (89.16 seconds elapsed during race)
Race Start August 3, 2022 11:05:28am UTC
Race Finish August 3, 2022 11:06:57am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 31.06
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.'; } }