csati (csati)

Race #15

View Pit Stop page for race #15 by csatiGhost race

View profile for csati (csati)

Official speed 54.21 wpm (66.63 seconds elapsed during race)
Race Start October 4, 2021 3:06:05pm UTC
Race Finish October 4, 2021 3:07:12pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 41.56
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.'; } }