P ʀ ɪ ɴ ᴄ ᴇ (prince_zox)

Race #22

View Pit Stop page for race #22 by prince_zoxGhost race

View profile for P ʀ ɪ ɴ ᴄ ᴇ (prince_zox)

Official speed 26.51 wpm (136.25 seconds elapsed during race)
Race Start June 8, 2023 11:58:28am UTC
Race Finish June 8, 2023 12:00:45pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 20.33
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.'; } }