(mononym_jisoo)

Race #2

View Pit Stop page for race #2 by mononym_jisooGhost race

View profile for (mononym_jisoo)

Official speed 57.74 wpm (58.19 seconds elapsed during race)
Race Start September 9, 2019 3:15:39am UTC
Race Finish September 9, 2019 3:16:37am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 44.27
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.'; } }