Record your races with a typeracer account:
Create Your Account- Save your race history and scores.
- Customize your profile and racecar.
- It’s free, why not?
Text Details
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>');
});
— Breakpoint
(other)
by http://www.javascriptbook.com
|
Language: | English |
This text has been typed
60 times:
Avg. speed: | 62 WPM |
---|---|
Avg. accuracy: | 96.1% |