into-the-abyss (_yash_)

Race #5

View Pit Stop page for race #5 by _yash_Ghost race

View profile for into-the-abyss (_yash_)

Official speed 33.30 wpm (108.47 seconds elapsed during race)
Race Start July 16, 2023 1:31:48pm UTC
Race Finish July 16, 2023 1:33:37pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 25.53
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.'; } }