Youssef (youssef_175)

Race #1

View Pit Stop page for race #1 by youssef_175Ghost race

View profile for Youssef (youssef_175)

Official speed 26.71 wpm (135.23 seconds elapsed during race)
Race Start June 3, 2023 5:20:44pm UTC
Race Finish June 3, 2023 5:23:00pm UTC
Outcome No win (3 of 3)
Accuracy 90.0%
Points 20.48
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.'; } }