View Pit Stop page for race #114 by sidd_ — Ghost race
Official speed | 91.34 wpm (47.56 seconds elapsed during race) |
---|---|
Race Start | February 14, 2019 3:09:39am UTC |
Race Finish | February 14, 2019 3:10:26am UTC |
Outcome | Win (1 of 3) |
Opponents |
2. deroche1 (78.72 wpm) |
Accuracy | 98.0% |
Points | 74.59 |
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 + ' '); }); |