(sidd_)

Race #133

View Pit Stop page for race #133 by sidd_Ghost race

View profile for (sidd_)

Official speed 127.19 wpm (26.42 seconds elapsed during race)
Race Start February 16, 2019 5:39:47am UTC
Race Finish February 16, 2019 5:40:14am UTC
Outcome Win (1 of 3)
Opponents 2. deroche1 (86.15 wpm)
3. actuallynonquitforlife (57.42 wpm)
Accuracy 99.0%
Points 97.51
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.'; } }