ftplz (hisoka666)

Race #2

View Pit Stop page for race #2 by hisoka666Ghost race

View profile for ftplz (hisoka666)

Official speed 66.35 wpm (50.64 seconds elapsed during race)
Race Start November 28, 2020 9:02:30pm UTC
Race Finish November 28, 2020 9:03:21pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 50.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.'; } }