(0x0x0x)

Race #2

View Pit Stop page for race #2 by 0x0x0xGhost race

View profile for (0x0x0x)

Official speed 54.69 wpm (66.04 seconds elapsed during race)
Race Start July 7, 2021 7:59:29am UTC
Race Finish July 7, 2021 8:00:35am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 41.93
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.'; } }