slamg_Luke (slamg_luke)

Race #1

View Pit Stop page for race #1 by slamg_lukeGhost race

View profile for slamg_Luke (slamg_luke)

Official speed 32.27 wpm (111.93 seconds elapsed during race)
Race Start June 15, 2023 9:12:18pm UTC
Race Finish June 15, 2023 9:14:10pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 24.74
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.'; } }