{"ScriptPreparationCode":"var attrs = document.body.querySelector(\u0027.modal\u0027).attributes","TestCases":[{"Name":"slice","Code":"var other = Array.prototype.slice.call(attrs);","IsDeferred":false},{"Name":"spread operator","Code":"var other = [ ...attrs ]","IsDeferred":false},{"Name":"push apply into empty array","Code":"var other = [];\r\n[].push.apply(other, attrs)","IsDeferred":false},{"Name":"Array.from","Code":"var other = Array.from(attrs);","IsDeferred":false},{"Name":"Object.values","Code":"var other = Object.values(attrs);","IsDeferred":false}]}