Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace the "As mentioned earlier" part in ch1.md #1789

Open
wants to merge 1 commit into
base: 2nd-ed
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion get-started/ch2.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ You won't encounter direct usage of symbols very often in typical JS programs. T

Besides primitives, the other value type in JS is an object value.

As mentioned earlier, arrays are a special type of object that's comprised of an ordered and numerically indexed list of data:
It is worth mentioning that JS arrays are a special type of object that's comprised of an ordered and numerically indexed list of data:
Copy link

@Lasitha92 Lasitha92 Jun 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should be like this right?
special type of objects that comprised of an ordered and numerically ...


```js
var names = [ "Frank", "Kyle", "Peter", "Susan" ];
Expand Down