Shoemaker-Levy 9 (atthetop)

Race #74

View Pit Stop page for race #74 by atthetopGhost race

View profile for Shoemaker-Levy 9 (atthetop)

Official speed 58.77 wpm (73.92 seconds elapsed during race)
Race Start November 1, 2018 6:29:47pm UTC
Race Finish November 1, 2018 6:31:01pm UTC
Outcome No win (2 of 3)
Opponents 1. styrofoam (68.11 wpm)
3. uchihalol (46.45 wpm)
Accuracy 97.0%
Points 48.00
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 + '

'); });