Answers for "how to check that the element is a array or not in javascript"

2

how to check if something is array javascript

function isArray(value) {
    return Object.prototype.toString.call(value) === "[object Array]";
}
Posted by: Guest on May-06-2020

Code answers related to "how to check that the element is a array or not in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language