PTG (ptg_123456)

Race #5

View Pit Stop page for race #5 by ptg_123456Ghost race

View profile for PTG (ptg_123456)

Official speed 27.52 wpm (131.25 seconds elapsed during race)
Race Start August 18, 2023 6:59:56am UTC
Race Finish August 18, 2023 7:02:08am UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 21.10
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.'; } }