Taush (tsampley)

Race #8

View Pit Stop page for race #8 by tsampleyGhost race

View profile for Taush (tsampley)

Official speed 61.81 wpm (58.44 seconds elapsed during race)
Race Start June 22, 2021 3:30:31pm UTC
Race Finish June 22, 2021 3:31:29pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 47.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.'; } }