Bigily (bigilyy)

Race #1

View Pit Stop page for race #1 by bigilyyGhost race

View profile for Bigily (bigilyy)

Official speed 31.64 wpm (114.16 seconds elapsed during race)
Race Start January 17, 2023 8:28:29pm UTC
Race Finish January 17, 2023 8:30:24pm UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 24.26
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.'; } }