fishy15 (fishy15)

Race #6

View Pit Stop page for race #6 by fishy15Ghost race

View profile for fishy15 (fishy15)

Official speed 72.00 wpm (50.17 seconds elapsed during race)
Race Start November 23, 2021 4:47:05am UTC
Race Finish November 23, 2021 4:47:55am UTC
Outcome No win (2 of 2)
Accuracy 97.0%
Points 55.20
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.'; } }