Silver (psilverfish)

Race #10

View Pit Stop page for race #10 by psilverfishGhost race

View profile for Silver (psilverfish)

Official speed 33.11 wpm (109.09 seconds elapsed during race)
Race Start April 13, 2023 8:55:12pm UTC
Race Finish April 13, 2023 8:57:01pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 25.39
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.'; } }