Youssef (sec5x)

Race #12

View Pit Stop page for race #12 by sec5xGhost race

View profile for Youssef (sec5x)

Official speed 72.73 wpm (49.66 seconds elapsed during race)
Race Start April 22, 2023 7:38:04pm UTC
Race Finish April 22, 2023 7:38:54pm UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 55.76
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.'; } }