{"ScriptPreparationCode":"const array = [{a:2, b:4}, {a:3, b:6}, {a:5, b:9}]\r\nconst emptyArray = []","TestCases":[{"Name":"useing isArray","Code":"if(Array.isArray(array)) console.log(\u0027array\u0027);\r\nif(Array.isArray(emptyArray)) console.log(\u0027emptyArray\u0027);","IsDeferred":false},{"Name":"useing length","Code":"if(array?.length) console.log(\u0027array\u0027);\r\nif(emptyArray?.length) console.log(\u0027emptyArray\u0027);","IsDeferred":false}]}