首页 > 其他 > 详细

简单的解构赋值

时间:2018-12-29 13:25:41      阅读:137      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>
  <script>
    // const arr = [1,2,3,4]
    /* const a = 1
    const b = 2
    const c = 3
    const d = 4 */

    // const [a, c, b, d] = [1, 2, 3, 4]

    // const age = 20

    function fn(callback) {
      callback({a: 10, b: 20})
    }

    fn(function ({a, b}) {
      console.log(a, b)
    })


    // const {a, b} = {a: 10, b: 20}

    function fn (context) {}
    fn ({commit})
    // content = store = {commit: function () {}, state: {}}
    const {commit, state} = context
    const {age: age1, name} = {name: 张三, age: 18, sex: }



  </script>

</body>
</html>

 

简单的解构赋值

原文:https://www.cnblogs.com/bao2333/p/10195210.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!