Sean Wrona (arenasnow)

Race #4

View Pit Stop page for race #4 by arenasnowGhost race

View profile for Sean Wrona (arenasnow)

Official speed 98.22 wpm (44.23 seconds elapsed during race)
Race Start February 14, 2019 3:19:09am UTC
Race Finish February 14, 2019 3:19:53am UTC
Outcome Win (1 of 2)
Opponents 2. deroche1 (81.21 wpm)
Accuracy 98.0%
Points 80.21
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 + '

'); });