29 lines
655 B
HTML
29 lines
655 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>JsBook</title>
|
|
</head>
|
|
<body>
|
|
|
|
<iframe src="example2.html" frameborder="1"></iframe>
|
|
<input type="date">
|
|
<h1>Список</h1>
|
|
<script type="text/javascript">
|
|
let person = {
|
|
"keke": 100,
|
|
"lol": "lol_value",
|
|
}
|
|
|
|
for (i in person){
|
|
document.write('<br/>', i, ': ', person[i]);
|
|
console.log('----------------')
|
|
console.log(person[i]);}
|
|
|
|
throw new TypeError('LLLLLLL')
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|