Andrews (godspeeedd)

Race #51

View Pit Stop page for race #51 by godspeeeddGhost race

View profile for Andrews (godspeeedd)

Official speed 61.25 wpm (58.97 seconds elapsed during race)
Race Start August 9, 2023 5:52:46pm UTC
Race Finish August 9, 2023 5:53:45pm UTC
Outcome Win (1 of 2)
Accuracy 95.0%
Points 46.96
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.'; } }