1. // const input = {
    2. // a: 1,
    3. // b: 2
    4. // };
    5. // const test = {
    6. // d: 5
    7. // };
    8. // const output = {
    9. // ...input,
    10. // ...test,
    11. // c: 3
    12. // };
    13. // console.log(input, output); // {a:1, b:2} {a:1, b:2, d:5, c:3}
    14. // input.a = 4;
    15. // console.log(input, output); // {a:4, b:2} {a:1, b:2, d:5, c:3}
    16. const input = {
    17. a: 1,
    18. b: 2,
    19. c: 3,
    20. d: 4,
    21. e: 5
    22. };
    23. const { a, b, ...rest } = input;
    24. console.log(a, b, rest); // 1 2 {c:3, d:4, e:5}