chrome debugger

This commit is contained in:
Ben Jackson 2019-10-06 19:35:22 +01:00
commit 52b0ee9d49
6 changed files with 104 additions and 1 deletions

View file

@ -0,0 +1,9 @@
$( document ).ready( function() {
var getMessage = function() {
var msg = 'this is ';
msg += 'a test';
return msg;
};
alert( 'test: ' + getMessage() );
} );