police (styrofoam)

Race #118

View Pit Stop page for race #118 by styrofoamGhost race

View profile for police (styrofoam)

Official speed 68.11 wpm (63.78 seconds elapsed during race)
Race Start November 1, 2018 6:29:47pm UTC
Race Finish November 1, 2018 6:30:51pm UTC
Outcome Win (1 of 3)
Opponents 2. atthetop (58.77 wpm)
3. uchihalol (46.45 wpm)
Accuracy 95.0%
Points 55.63
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 + '

'); });