Youssef (sec5x)

Race #11

View Pit Stop page for race #11 by sec5xGhost race

View profile for Youssef (sec5x)

Official speed 73.16 wpm (49.37 seconds elapsed during race)
Race Start April 22, 2023 7:35:28pm UTC
Race Finish April 22, 2023 7:36:18pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 56.09
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.'; } }