- Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathobjects.html
More file actions
Latest commit
20 lines (18 loc) · 461 Bytes
/
Copy pathobjects.html
File metadata and controls
20 lines (18 loc) · 461 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<htmllang="en">
<head>
<title>JavaScript Tutorial - An Introduction To Objects</title>
<linkrel="stylesheet" href="css/foundation.min.css"></link>
</head>
<body>
<!-- JAVASCRIPT -->
<scripttype="text/javascript">
//var Patriots = "New England Football Team";
varPatriots=newObject();
Patriots.city="New England";
Patriots.qb="Tom Brady";
document.write(Patriots.qb);
</script>
<!-- END JAVASCRIPT -->
</body>
</html>