Write Your JavaScript Code Here

// Array :- It is collection more the single value inside an variable // isArray(): return the true if the value passed is an array // Array.isArray(obj_value); const arr1=[1,2,3,4]; const v =22; console.log(Array.isArray(arr1)); console.log(Array.isArray(v));

Output: