Abdo (abdo_amer1)

Race #1

View Pit Stop page for race #1 by abdo_amer1Ghost race

View profile for Abdo (abdo_amer1)

Official speed 38.23 wpm (94.48 seconds elapsed during race)
Race Start March 18, 2023 11:48:44am UTC
Race Finish March 18, 2023 11:50:18am UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 29.31
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.'; } }