paraph (paraphrohn)

Race #16

View Pit Stop page for race #16 by paraphrohnGhost race

View profile for paraph (paraphrohn)

Official speed 77.05 wpm (43.61 seconds elapsed during race)
Race Start February 25, 2019 2:01:47pm UTC
Race Finish February 25, 2019 2:02:30pm UTC
Outcome No win (2 of 2)
Opponents 1. permil (101.56 wpm)
Accuracy 96.0%
Points 59.07
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.'; } }