Amine (amine_frihi)

Race #63

View Pit Stop page for race #63 by amine_frihiGhost race

View profile for Amine (amine_frihi)

Official speed 23.61 wpm (152.99 seconds elapsed during race)
Race Start May 3, 2024 5:30:12pm UTC
Race Finish May 3, 2024 5:32:45pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 18.10
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.'; } }