Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 1-js/04-object-basics/06-constructor-new/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ john = {
JavaScript 为许多内置的对象提供了构造函数:比如日期 Date,设置集合 Set 以及其他我们计划学习的内容。

```smart header="Objects, we'll be back!"
在本章中,我们只介绍关于对象和构造函数的基础知识。它们对于在下一章中更多地了解数据类型和函数非常重要
在本章中,我们只介绍关于对象和构造函数的基础知识。它们对于在以后章节中更多地了解数据类型和函数非常重要

在我们了解了这一章之后 <info:object-oriented-programming> 我们返回到对象并深入其中,包括继承和类
在我们学习了那些之后,我们将回到对象,在<info:prototypes>和<info:classes>章节中深入介绍它们
```