Shobonvip (shobonvip)

Race #2

View Pit Stop page for race #2 by shobonvipGhost race

View profile for Shobonvip (shobonvip)

Official speed 72.51 wpm (49.81 seconds elapsed during race)
Race Start May 9, 2024 9:52:51am UTC
Race Finish May 9, 2024 9:53:41am UTC
Outcome Win (1 of 2)
Accuracy 95.0%
Points 55.59
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.'; } }