Abdou (abdoulabani1)

Race #1

View Pit Stop page for race #1 by abdoulabani1Ghost race

View profile for Abdou (abdoulabani1)

Official speed 26.30 wpm (137.34 seconds elapsed during race)
Race Start June 19, 2023 2:48:30am UTC
Race Finish June 19, 2023 2:50:47am UTC
Outcome Win (1 of 2)
Accuracy 91.0%
Points 20.16
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.'; } }