⛓Unchained World⛓ (ahkiera)

Race #27

View Pit Stop page for race #27 by ahkieraGhost race

View profile for ⛓Unchained World⛓ (ahkiera)

Official speed 68.46 wpm (52.76 seconds elapsed during race)
Race Start January 15, 2022 4:11:08pm UTC
Race Finish January 15, 2022 4:12:01pm UTC
Outcome Win (1 of 2)
Accuracy 97.0%
Points 52.49
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.'; } }