(delirious)

Race #49

View Pit Stop page for race #49 by deliriousGhost race

View profile for (delirious)

Official speed 96.20 wpm (34.93 seconds elapsed during race)
Race Start February 1, 2019 1:11:41am UTC
Race Finish February 1, 2019 1:12:16am UTC
Outcome No win (2 of 2)
Opponents 1. sidd_ (123.19 wpm)
Accuracy 100.0%
Points 73.75
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.'; } }