Stella (stellarluminant)

Race #4

View Pit Stop page for race #4 by stellarluminantGhost race

View profile for Stella (stellarluminant)

Official speed 40.23 wpm (107.98 seconds elapsed during race)
Race Start November 8, 2018 6:54:50pm UTC
Race Finish November 8, 2018 6:56:38pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 32.86
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 + '

'); });