vishE (actuallynonquitforlife)

Race #1

View Pit Stop page for race #1 by actuallynonquitforlifeGhost race

View profile for vishE (actuallynonquitforlife)

Official speed 57.42 wpm (58.52 seconds elapsed during race)
Race Start February 16, 2019 5:39:47am UTC
Race Finish February 16, 2019 5:40:46am UTC
Outcome No win (3 of 3)
Opponents 1. sidd_ (127.19 wpm)
2. deroche1 (86.15 wpm)
Accuracy 94.0%
Points 44.03
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.'; } }