Hamza (hamza_g)

Race #65

View Pit Stop page for race #65 by hamza_gGhost race

View profile for Hamza (hamza_g)

Official speed 30.81 wpm (117.23 seconds elapsed during race)
Race Start August 6, 2022 6:45:20pm UTC
Race Finish August 6, 2022 6:47:17pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 23.62
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.'; } }