150 how? (minidraco)

Race #3

View Pit Stop page for race #3 by minidracoGhost race

View profile for 150 how? (minidraco)

Official speed 54.60 wpm (66.15 seconds elapsed during race)
Race Start September 11, 2022 10:18:26am UTC
Race Finish September 11, 2022 10:19:33am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 41.86
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.'; } }