Cire (type4harambe)

Race #4

View Pit Stop page for race #4 by type4harambeGhost race

View profile for Cire (type4harambe)

Official speed 68.15 wpm (49.30 seconds elapsed during race)
Race Start January 28, 2019 5:47:10am UTC
Race Finish January 28, 2019 5:47:59am UTC
Outcome No win (2 of 3)
Opponents 1. sidd_ (127.96 wpm)
3. foggyy (63.02 wpm)
Accuracy 96.0%
Points 52.25
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.'; } }