Alex Beltran T. (beltran_tarqui)

Race #98

View Pit Stop page for race #98 by beltran_tarquiGhost race

View profile for Alex Beltran T. (beltran_tarqui)

Official speed 29.83 wpm (121.09 seconds elapsed during race)
Race Start June 10, 2025 4:50:18pm UTC
Race Finish June 10, 2025 4:52:19pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 22.87
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.'; } }