(e6f4e37l)

Race #25

View Pit Stop page for race #25 by e6f4e37lGhost race

View profile for (e6f4e37l)

Official speed 102.84 wpm (35.12 seconds elapsed during race)
Race Start July 3, 2021 1:31:47pm UTC
Race Finish July 3, 2021 1:32:22pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 78.84
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.'; } }