Userzin (userzin)

Race #18

View Pit Stop page for race #18 by userzinGhost race

View profile for Userzin (userzin)

Official speed 57.06 wpm (63.30 seconds elapsed during race)
Race Start October 19, 2021 3:00:47pm UTC
Race Finish October 19, 2021 3:01:51pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 43.75
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.'; } }