how to find the data is array or string in javascript code example
Example 1: if object is array javascript
Array.isArray(object);
Example 2: js check if array
Array.isArray([1, 2, 3]); // true
Array.isArray('asdf'); // false
Array.isArray(object);
Array.isArray([1, 2, 3]); // true
Array.isArray('asdf'); // false