View Pit Stop page for race #100 by sidd_ — Ghost race
Official speed | 101.80 wpm (42.67 seconds elapsed during race) |
---|---|
Race Start | February 1, 2019 1:25:28am UTC |
Race Finish | February 1, 2019 1:26:11am UTC |
Outcome | Win (1 of 2) |
Opponents |
2. delirious (76.99 wpm) |
Accuracy | 98.0% |
Points | 83.13 |
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 + ' '); }); |