Uno (unoppa)

Race #11

View Pit Stop page for race #11 by unoppaGhost race

View profile for Uno (unoppa)

Official speed 51.68 wpm (69.89 seconds elapsed during race)
Race Start August 11, 2023 6:11:32am UTC
Race Finish August 11, 2023 6:12:42am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 39.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.'; } }