12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- var obj = {
- name:'zs',
- age:18,
- eat:function(){
- console.log('eat')
- }
- }
- var obj1 = {
- name:'lisi',
- school:'xiwangxiaoxue'
- }
- /* 合并对象 用obj1 去 覆盖 obj */
- var obj2 = Object.assign(obj,obj1)
- console.log(obj2)
- /* 合并对象 */
- var obj3 = {...obj1,...obj}
- console.log(obj3)
- </script>
- </body>
- </html>
|