View Pit Stop page for race #53 by atthetop — Ghost race
View profile for Shoemaker-Levy 9 (atthetop)
Official speed | 50.14 wpm (86.64 seconds elapsed during race) |
---|---|
Race Start | November 1, 2018 3:05:16am UTC |
Race Finish | November 1, 2018 3:06:43am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. styrofoam (56.28 wpm) |
Accuracy | 94.0% |
Points | 40.95 |
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 + ' '); }); |