Uno (unoppa)

Race #20

View Pit Stop page for race #20 by unoppaGhost race

View profile for Uno (unoppa)

Official speed 50.37 wpm (71.71 seconds elapsed during race)
Race Start August 24, 2023 2:04:45am UTC
Race Finish August 24, 2023 2:05:56am UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 38.62
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.'; } }