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