:) (bavadin)

Race #265

View Pit Stop page for race #265 by bavadinGhost race

View profile for :) (bavadin)

Official speed 72.88 wpm (46.10 seconds elapsed during race)
Race Start August 31, 2020 1:00:52am UTC
Race Finish August 31, 2020 1:01:38am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 55.87
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.'; } }