View Pit Stop page for race #3 by chillee — Ghost race
View profile for Horace (chillee)
| Official speed | 61.75 wpm (70.35 seconds elapsed during race) |
|---|---|
| Race Start | November 29, 2018 4:05:37am UTC |
| Race Finish | November 29, 2018 4:06:47am UTC |
| Outcome | Win (1 of 2) |
| Opponents |
2. s_train (42.48 wpm) |
| Accuracy | 96.0% |
| Points | 50.43 |
| 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 + ' '); }); |