(poke1)

Race #11

View Pit Stop page for race #11 by poke1Ghost race

View profile for (poke1)

Official speed 80.92 wpm (44.64 seconds elapsed during race)
Race Start September 2, 2021 8:19:03pm UTC
Race Finish September 2, 2021 8:19:47pm UTC
Outcome Win (1 of 2)
Opponents 2. poem (79.65 wpm)
Accuracy 98.0%
Points 62.04
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.'; } }