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