// how to check value is array or not in javascript const str = "foo"; const check = Array.isArray(str); console.log(check); // Result: false const arr = [1,2,3,4]; const output = Array.isArray(arr); console.log(output); // Result: true