The difference between concat () and push () of

Item: 
      {name: 'Minnie', Age: 220 } 
    , 

list.push (items);

 

item:[
      { name: '米妮', age: 220 }]
    ,

list = list.concat(list,items);
    this.setData({
      list
    })

 

 
 
 
 
 
 
 

Guess you like

Origin www.cnblogs.com/xm666/p/11366132.html