Prepare repository for merge

This commit is contained in:
Angelos Chalaris
2023-05-01 22:35:56 +03:00
parent fc4e61e6fa
commit b3ad01863a
578 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,23 @@
---
title: Value is array-like
type: snippet
tags: [type,array]
cover: colorful-plastic
dateModified: 2020-10-20T23:02:01+03:00
---
Checks if the provided argument is array-like (i.e. is iterable).
- Check if the provided argument is not `null` and that its `Symbol.iterator` property is a function.
```js
const isArrayLike = obj =>
obj != null && typeof obj[Symbol.iterator] === 'function';
```
```js
isArrayLike([1, 2, 3]); // true
isArrayLike(document.querySelectorAll('.className')); // true
isArrayLike('abc'); // true
isArrayLike(null); // false
```