Vielle (arc_sec)

Race #57

View Pit Stop page for race #57 by arc_secGhost race

View profile for Vielle (arc_sec)

Official speed 106.71 wpm (31.49 seconds elapsed during race)
Race Start August 8, 2019 11:25:41pm UTC
Race Finish August 8, 2019 11:26:13pm UTC
Outcome Win (1 of 4)
Opponents 2. lesirh (68.31 wpm)
3. vfctyrant (51.45 wpm)
Accuracy 99.0%
Points 81.81
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.'; } }