Подскажите пожалуйста как решить ошибку.
Код js:
let input = document.getElementById('input').value;
let windows = document.getElementById('window').value;
function message() {
let p = document.createElement('p');
windows.сhild(p);
p.textContent = input;
}
Код html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="reboot.css">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="container">
<div class="window" id="window">
</div>
<input type="text" class="input" id="input" placeholder="Введите сообщение ">
<button class="button" onclick="message()">Отправить</button>
</div>
<script src="script.js"></script>
</body>
</html>
Ошибка:
TypeError: Cannot read properties of undefined (reading 'сhild')