let obj = {name:'Mary',num:10,age:18 };let arr = [];for(let i in obj){ arr.push(obj[i])}console.log(arr)