Skip to content

Commit

Permalink
Добавляет вопрос для собеседования в статью про Массивы (#5597)
Browse files Browse the repository at this point in the history
* добавляет вопрос про массивы

* Update interviews/arrays/index.md

Co-authored-by: Alena Batitskaia <[email protected]>

* Update interviews/arrays/index.md

Co-authored-by: Tatiana Fokina <[email protected]>

---------

Co-authored-by: Alena Batitskaia <[email protected]>
Co-authored-by: Tatiana Fokina <[email protected]>
  • Loading branch information
3 people authored Dec 17, 2024
1 parent f234e2b commit 7379fba
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions interviews/arrays/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
related:
- js/arrays
---

Дан одномерный массив. Его элементами могут быть значения разных типов, включая: `undefined`, `null`, `boolean`, `string`, `number`.

Например:

```javascript
const array = [5, undefined, 0, false, '', null, true, 1]
```

Массив может быть разрежённым (sparse array), то есть включать незаполненные элементы (empty slots).

Например, добавим к массиву `array` элемент с индексом 15:

```javascript
array[15] = 'новый элемент'
console.log(array)
// [ 5, undefined, 0, false, '', null, true, 1, <7 empty items>, 'новый элемент']
```

Напишите функцию подсчёта незаполненных элементов массива.

0 comments on commit 7379fba

Please sign in to comment.