(sputype)

Race #36

View Pit Stop page for race #36 by sputypeGhost race

View profile for (sputype)

Official speed 56.17 wpm (59.82 seconds elapsed during race)
Race Start November 21, 2020 11:09:14am UTC
Race Finish November 21, 2020 11:10:14am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 43.06
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.'; } }