function Destructuring

Jang Byeong Mok·2020년 2월 6일
0

Javascript

목록 보기
2/9

Javascript function Destructuring

<script>
  function saveSettings({ notifications, color: { theme } }) {
    console.log(theme); // output : "blue"
  }

  saveSettings({
    notifications: {
      follow: true,
      alert: true,
      mkt: false
    },
    color: {
      theme: "blue"
    }
  });
  </script>

0개의 댓글