Race Result Details |
Racer | Stella (stellarluminant) |
Race Number | 4 |
Date | Thu, 8 Nov 2018 18:56:38 |
Universe | code |
Speed |
40 WPM
![]() |
Accuracy | 95.7% |
Rank | 3rd place (out of 3) |
Text typed:
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('<p>' + area + '</p>');
});
— (other)
by http://www.javascriptbook.com
(see stats)
|