forked from AnnaKap/wit_javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel1.js
More file actions
15 lines (11 loc) · 726 Bytes
/
level1.js
File metadata and controls
15 lines (11 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// code can go below here \\
// 1. After you have completed the instructions from your web console close the browser
// 2. In terminal run `open -a "Google Chrome" level2.html` to open your second html file in the browser
console.log("Hello world");
console.log("THIS IS Level 1!!!");
console.log("this is your web browser's console");
console.log("you are recieving this message from your 'level1.js' file in vscode");
console.log("find your level1.js file and write a message to your page");
console.log("to write a messgae to your page use the document object")
console.log("write document.write('with your message here') in your level1.js file");
console.log("make sure you save and then refresh your browser window");