View Pit Stop page for race #19 by atthetop — Ghost race
View profile for Shoemaker-Levy 9 (atthetop)
Official speed | 51.07 wpm (85.06 seconds elapsed during race) |
---|---|
Race Start | October 31, 2018 11:22:36pm UTC |
Race Finish | October 31, 2018 11:24:01pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. styrofoam (61.00 wpm) |
Accuracy | 94.0% |
Points | 41.70 |
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 + ' '); }); |