1
2
<html lang="en">
3
<head>
4
<title>Objects</title>
5
</head>
6
<body>
7
<script>
8
let student = {name:"Mohamed", age:27, study:"Web Development"};
9
document.write(student.name);
10
document.write("<br>");
11
document.write(typeof(student));
12
</script>
13
</body>
14
</html>