let user={a:'小米',b:'华为'};
gg(user); //传入user json对象
function gg({a,b}){ //直接写参数值 比较规范传参写法
alert(a+""+b) //打印的值 ‘小米华为‘
}