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

Добавляет нюанс про разреженный массив #5559

Open
wants to merge 10 commits into
base: main
Choose a base branch
from

Conversation

nasty23-star
Copy link
Contributor

@nasty23-star nasty23-star commented Nov 20, 2024

Описание

Closes #5558

Чек-лист

  • Текст оформлен согласно руководству по стилю
  • Ссылки на внутренние материалы начинаются со слеша и заканчиваются слэшем либо якорем на заголовок (/css/color/, /tools/json/, /tools/gulp/#kak-ponyat)
  • Ссылки на картинки, видео и демки относительные (images/example.png, demos/example/, ../demos/example/)

@github-actions github-actions bot added js Контент по JavaScript дока Справочный материал labels Nov 20, 2024
@nasty23-star nasty23-star self-assigned this Nov 20, 2024
js/arrays/index.md Outdated Show resolved Hide resolved
js/arrays/index.md Outdated Show resolved Hide resolved
js/arrays/index.md Outdated Show resolved Hide resolved
js/arrays/index.md Outdated Show resolved Hide resolved
js/arrays/index.md Outdated Show resolved Hide resolved
js/arrays/index.md Outdated Show resolved Hide resolved
@TatianaFokina TatianaFokina added the улучшение Доработка существующего label Nov 21, 2024
js/arrays/index.md Outdated Show resolved Hide resolved
js/arrays/index.md Outdated Show resolved Hide resolved
js/arrays/index.md Outdated Show resolved Hide resolved
console.log(arr)
```

Длина массива будет включать в себя не только элементы, но и все незаполненные элементы, то есть в нашем случае не 5 элементов, а 6:
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
Длина массива будет включать в себя не только элементы, но и все незаполненные элементы, то есть в нашем случае не 5 элементов, а 6:
Длина массива будет включать в себя все элементы, включая незаполненные, то есть в нашем случае не 5 элементов, а 6:

Может так ?

Comment on lines +200 to +201
// Зрители, которые заняли три места в ряду. Индексы их мест: 0,1, 2
const audience = [🐸, 🐶, 🐱 ]
Copy link
Contributor

@vitya-ne vitya-ne Nov 27, 2024

Choose a reason for hiding this comment

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

Suggested change
// Зрители, которые заняли три места в ряду. Индексы их мест: 0,1, 2
const audience = [🐸, 🐶, 🐱 ]
// Зрители, которые заняли три места в ряду. Индексы их мест: 0, 1, 2
const audience = ["🐸", "🐶", "🐱"]

Тут лишние/недостающие пробелы и не хватает кавычек

// Зрители, которые заняли три места в ряду. Индексы их мест: 0,1, 2
const audience = [🐸, 🐶, 🐱 ]
// опоздавший зритель занял место в темноте и не попорядку!
audience[5] = 🐌
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
audience[5] = 🐌
audience[5] = "🐌"

Copy link

Превью контента из 0d35c7b опубликовано.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
js Контент по JavaScript дока Справочный материал улучшение Доработка существующего
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Что такое "разреженный массив" и какая у него будет длина?
3 participants