kewl (hyper_racer)

Race #59

View Pit Stop page for race #59 by hyper_racerGhost race

View profile for kewl (hyper_racer)

Official speed 67.39 wpm (49.86 seconds elapsed during race)
Race Start August 10, 2019 8:36:27pm UTC
Race Finish August 10, 2019 8:37:17pm UTC
Outcome No win (2 of 3)
Opponents 3. fortnitefinatic (37.50 wpm)
Accuracy 98.0%
Points 51.66
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.'; } }