“Ctrl+/”
“F11/ESC”
<!DOCTYPE html>
<html>
<head>
<title>Object Type Example 1</title>
<script type="text/javascript">
var person = new Object();
person.name = "Nicholas";
person.age = 29;
alert(person.name);
alert(person.age);
</script>
</head>
<body>
</body>
</html>