(JavaScript) 디스트럭처링

<!DOCTYPE html>
<html lang="ko">
<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>
        let num= (1,2);
        // let a = 1;
        // let b = 2;
        // let (a,c) = (1,2);
        let (a,c) = (num(0), num(1));
        document.write(a,", ",c);
    </script>
</body>
</html>

펜 참조 무제 by 민영2(@민영2) 에 코드펜.

펜 참조 무제 by 민영2(@민영2) 에 코드펜.

펜 참조 무제 by 민영2(@민영2) 에 코드펜.