SIUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU (smlg120)

Race #10

View Pit Stop page for race #10 by smlg120Ghost race

View profile for SIUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU (smlg120)

Official speed 62.04 wpm (58.22 seconds elapsed during race)
Race Start August 5, 2024 2:31:49pm UTC
Race Finish August 5, 2024 2:32:47pm UTC
Outcome No win (1 of 1)
Accuracy 97.0%
Points 47.57
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.'; } }