View Pit Stop page for race #55 by delirious — Ghost race
| Official speed | 76.99 wpm (56.42 seconds elapsed during race) |
|---|---|
| Race Start | February 1, 2019 1:25:28am UTC |
| Race Finish | February 1, 2019 1:26:25am UTC |
| Outcome | No win (2 of 2) |
| Opponents |
1. sidd_ (101.80 wpm) |
| Accuracy | 99.0% |
| Points | 62.88 |
| Text | #10012 (Length: 372 characters) var $form, width, height, area; $form = $('#calculator'); $('#calculator').on('submit', function(e) { e.preventDefault(); console.log('Clicked submit...'); width = $('#width').val(); height = $('#height').val(); area = (width * height); if (area < 100) { debugger; // A breakpoint is set if the developer tools are open } $form.append(' ' + area + ' '); }); |