-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathi_do_declare.html
More file actions
30 lines (27 loc) · 1.15 KB
/
i_do_declare.html
File metadata and controls
30 lines (27 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<script>
var phone = 2062253218;
var empId = 52663;
var bankBal = -152366;
var guests = 10;
var msg = "Time to make the donuts.";
var task = "Keep digging the tunnel.";
var purpose = "joy";
var fun = false;
var boring = true;
var mikayla;
console.log ("wanna duck? Call:" + phone);
console.log ("from this day forward, you will only be known as employee " + empId);
console.log ("Current Balance is $" + bankBal);
console.log (guests + " people have complained about the food.");
console.log ("At 6am, my alarm goes off and says " + msg);
console.log ("Keep your head down, your nose clean -- and always remember: '" + task + "'");
console.log ("have you found " + purpose + " in your life?");
console.log ("my job is fun: " + fun);
console.log ("my job is boring: " + boring);
console.log ("mikayla is " + mikayla);
</script>
</head>
</html>