mohamed samir (3agwa_79)

Race #70

View Pit Stop page for race #70 by 3agwa_79Ghost race

View profile for mohamed samir (3agwa_79)

Official speed 64.99 wpm (55.58 seconds elapsed during race)
Race Start May 23, 2023 1:41:33pm UTC
Race Finish May 23, 2023 1:42:28pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 49.83
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.'; } }