Gatsu (ace27)

Race #2

View Pit Stop page for race #2 by ace27Ghost race

View profile for Gatsu (ace27)

Official speed 34.65 wpm (104.24 seconds elapsed during race)
Race Start August 20, 2023 6:10:02pm UTC
Race Finish August 20, 2023 6:11:47pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 26.57
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.'; } }