Userzin (userzin)

Race #51

View Pit Stop page for race #51 by userzinGhost race

View profile for Userzin (userzin)

Official speed 52.17 wpm (69.24 seconds elapsed during race)
Race Start November 30, 2021 7:56:30pm UTC
Race Finish November 30, 2021 7:57:39pm UTC
Outcome No win (3 of 3)
Opponents 2. arnoldchewbacca (59.87 wpm)
Accuracy 94.0%
Points 40.00
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.'; } }