View Pit Stop page for race #53 by sidd_ — Ghost race
Official speed | 107.05 wpm (40.58 seconds elapsed during race) |
---|---|
Race Start | January 27, 2019 11:05:50pm UTC |
Race Finish | January 27, 2019 11:06:30pm UTC |
Outcome | Win (1 of 4) |
Opponents |
2. delirious (69.65 wpm) |
Accuracy | 99.0% |
Points | 87.42 |
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 + ' '); }); |