Shoemaker-Levy 9 (atthetop)

Race #43

View Pit Stop page for race #43 by atthetopGhost race

View profile for Shoemaker-Levy 9 (atthetop)

Official speed 50.76 wpm (85.58 seconds elapsed during race)
Race Start October 31, 2018 11:57:13pm UTC
Race Finish October 31, 2018 11:58:39pm UTC
Outcome No win (2 of 2)
Opponents 1. styrofoam (55.29 wpm)
Accuracy 93.0%
Points 41.45
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 + '

'); });