- 已关闭。**此问题为not reproducible or was caused by typos。当前不接受答案。
这个问题是由打字错误或无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
昨天关门了。
Improve this question
当我在浏览器中打开html文件时,它在控制台中没有显示任何内容。它应该显示2个对象(post1和post2)。在VSC中,第20行的单词posts下有一条红线,也不知道为什么
<script>
var post1 = {
content: 'This is my super post',
likes: 30,
shares: 20
}
var post2 = {
content: 'This is my boring post',
likes: 5,
shares: 0
}
var facebookuser = {
userName: 'Ahmed',
password: 'xxxx',
email: 'anoun123@hotmail.com',
profileimage: 'reference-image',
friends: ['Mike', 'Wael', 'Rami']
posts: [post1, post2]
}
var posts = [post1, post2]
for (index in posts) {
console.log(posts[index])
}
</script>
<body>
</body>
1条答案
按热度按时间ffx8fchx1#