:) (bavadin)

Race #266

View Pit Stop page for race #266 by bavadinGhost race

View profile for :) (bavadin)

Official speed 79.64 wpm (42.19 seconds elapsed during race)
Race Start September 1, 2020 5:53:26am UTC
Race Finish September 1, 2020 5:54:09am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 61.05
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.'; } }