Daily-Interview-Question icon indicating copy to clipboard operation
Daily-Interview-Question copied to clipboard

toArr()

Open s-jd opened this issue 3 years ago • 0 comments

function toArr(obj){
  console.log(Object.keys(obj));
  return Array.from({length:12},(v,k)=>{
    if(obj[k+1]===undefined){console.log("ok"); return null}
    else{return obj[k+1]}
  })
}

s-jd avatar Mar 29 '22 13:03 s-jd