Nameless (plot_da_pro)

Race #5

View Pit Stop page for race #5 by plot_da_proGhost race

View profile for Nameless (plot_da_pro)

Official speed 40.59 wpm (88.99 seconds elapsed during race)
Race Start July 5, 2023 12:11:01pm UTC
Race Finish July 5, 2023 12:12:30pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 31.12
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.'; } }