redouane (motivred)

Race #1

View Pit Stop page for race #1 by motivredGhost race

View profile for redouane (motivred)

Official speed 24.40 wpm (148.03 seconds elapsed during race)
Race Start July 21, 2023 6:48:39am UTC
Race Finish July 21, 2023 6:51:07am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 18.70
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.'; } }