├── .DS_Store ├── README.md ├── app.js └── index.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4rikas/javascript-playground/aaaad3308e9243e8ad51553d306cf3fd4be8ad74/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # javascript-playground 2 | This is a repository given to students to practice their skills using GitHub. 3 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | window.onload = () => { 2 | //console.log('This is your first program executing!'); 3 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |11 | Hello there! Press F12 on your keyboard to see if the console says 12 | anything to you. If not, let's search for a problem and debug the given 13 | code! 14 |
15 | 16 | 17 | 18 | --------------------------------------------------------------------------------