icebox (flsf)

Race #28

View Pit Stop page for race #28 by flsfGhost race

View profile for icebox (flsf)

Official speed 70.89 wpm (47.40 seconds elapsed during race)
Race Start April 29, 2019 6:52:20pm UTC
Race Finish April 29, 2019 6:53:08pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 54.35
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.'; } }