View Pit Stop page for race #18 by hellothen — Ghost race
View profile for SalmanMKC (hellothen)
Official speed | 61.68 wpm (54.47 seconds elapsed during race) |
---|---|
Race Start | January 27, 2019 11:23:36pm UTC |
Race Finish | January 27, 2019 11:24:31pm UTC |
Outcome | No win (3 of 5) |
Opponents |
1. sidd_ (133.59 wpm) 2. delirious (87.36 wpm) 4. styrofoam (57.32 wpm) 5. poem (53.77 wpm) |
Accuracy | 95.0% |
Points | 47.29 |
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.'; } } |