Как проверить является ли переменная массивом js

Аватар пользователя Ivan Gagarinov
Ivan Gagarinov
01 ноября 2021

Для того, чтобы проверить является ли переменная массивом, можно воспользоваться встроенным методом Array.isArray().

const numbers = [1, 2, 3];
console.log(Array.isArray(numbers)); // => true
console.log(Array.isArray([])); // => true

console.log(Array.isArray({})); // => false
console.log(Array.isArray('')); // => false
1 0
Аватар пользователя Виктория Аблаева
Виктория Аблаева
20 октября 2022

Предлагаю воспользоваться оператором instanceof:

const letters = ['a', 'b', 'c'];
const number = 5;
const text = 'Dracaris!';
const user = { name: 'Vasiliy', age: 15 };
console.log(letters instanceof Array) // => true
console.log(number instanceof Array) // => false
console.log(text instanceof Array) // => false
console.log(user instanceof Array) // => false

Документация:

  • instanceof
0 0
Аватар пользователя user-d0418886da066f53
user-d0418886da066f53
04 января 2023

Предлагаю на рассмотрение такой метод:

const arr = [1,2,3,4,5];
const arrEmpty = [];
const text = 'Text here';
const object = { name: 'Max', age: 30 };
const number = 5;

console.log(typeof arr === 'object' && arr !== null && arr.length >= 0) // => true
console.log(typeof arrEmpty === 'object' && arrEmpty !== null && arrEmpty.length >= 0) // => true
console.log(typeof text === 'object' && text !== null && text.length >= 0) // => false
console.log(typeof object === 'object' && object !== null && object.length >= 0) // => false
console.log(typeof number === 'object' && number !== null && number.length >= 0) // => false
0 0
Познакомьтесь с основами JavaScript бесплатно