Изучаю JS, помогите разобраться!
1ый пример из книги и уже не понятно
В Sublimtext создала index.html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My First JavaScript</title>
</head>
<body>
<script src="code.js">
</script>
</body>
</html>
code.js
var word = "bottles";
var count = 99;
while (count > 0) {
console.log(count + " " + word + " of beer on the wall");
console.log(count + " " + word + " of beer,");
console.log("Take one down, pass it around,");
count = count - 1;
if (count > 0) {
console.log(count + " " + word + " of beer on the wall.");
} else {
console.log("No more " + word + " of beer on the wall.");
}
}
В консоли нормально выводит строки, а в документе (на странице) нет
Почему?
|