-
Notifications
You must be signed in to change notification settings - Fork 640
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
base: main
Are you sure you want to change the base?
Conversation
Co-authored-by: Vitya <[email protected]>
Co-authored-by: Tatiana Fokina <[email protected]>
Co-authored-by: Tatiana Fokina <[email protected]>
Co-authored-by: Vitya <[email protected]>
Co-authored-by: Vitya <[email protected]>
console.log(arr) | ||
``` | ||
|
||
Длина массива будет включать в себя не только элементы, но и все незаполненные элементы, то есть в нашем случае не 5 элементов, а 6: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Длина массива будет включать в себя не только элементы, но и все незаполненные элементы, то есть в нашем случае не 5 элементов, а 6: | |
Длина массива будет включать в себя все элементы, включая незаполненные, то есть в нашем случае не 5 элементов, а 6: |
Может так ?
// Зрители, которые заняли три места в ряду. Индексы их мест: 0,1, 2 | ||
const audience = [🐸, 🐶, 🐱 ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// Зрители, которые заняли три места в ряду. Индексы их мест: 0,1, 2 | |
const audience = [🐸, 🐶, 🐱 ] | |
// Зрители, которые заняли три места в ряду. Индексы их мест: 0, 1, 2 | |
const audience = ["🐸", "🐶", "🐱"] |
Тут лишние/недостающие пробелы и не хватает кавычек
// Зрители, которые заняли три места в ряду. Индексы их мест: 0,1, 2 | ||
const audience = [🐸, 🐶, 🐱 ] | ||
// опоздавший зритель занял место в темноте и не попорядку! | ||
audience[5] = 🐌 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
audience[5] = 🐌 | |
audience[5] = "🐌" |
Co-authored-by: Vitya <[email protected]>
Превью контента из 0d35c7b опубликовано. |
Описание
Closes #5558
Чек-лист
/css/color/
,/tools/json/
,/tools/gulp/#kak-ponyat
)images/example.png
,demos/example/
,../demos/example/
)