Shoemaker-Levy 9 (atthetop)

Race #14

View Pit Stop page for race #14 by atthetopGhost race

View profile for Shoemaker-Levy 9 (atthetop)

Official speed 43.03 wpm (100.95 seconds elapsed during race)
Race Start October 31, 2018 4:35:56am UTC
Race Finish October 31, 2018 4:37:37am UTC
Outcome No win (2 of 2)
Opponents 1. styrofoam (48.96 wpm)
Accuracy 93.0%
Points 35.14
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 + '

'); });