Tahsin (tahsin__1)

Race #71

View Pit Stop page for race #71 by tahsin__1Ghost race

View profile for Tahsin (tahsin__1)

Official speed 45.20 wpm (79.91 seconds elapsed during race)
Race Start May 6, 2025 2:19:58pm UTC
Race Finish May 6, 2025 2:21:18pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 34.65
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.'; } }