You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
333 B

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
var bucky = {name: "Bucky Roberts", age: 24};
var taylor = {name: "Taylor Swift", age: 20};
</script>
</head>
<body>
<script type="text/javascript">
document.write(bucky.name + " loves " + taylor.name + " because she is " + taylor.age);
</script>
</body>
</html>