ay (d3b1)

Race #9

View Pit Stop page for race #9 by d3b1Ghost race

View profile for ay (d3b1)

Official speed 71.93 wpm (50.22 seconds elapsed during race)
Race Start September 19, 2021 3:01:53am UTC
Race Finish September 19, 2021 3:02:43am UTC
Outcome No win (2 of 5)
Opponents 3. vanosgaming2014 (71.85 wpm)
Accuracy 95.0%
Points 55.15
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.'; } }