Hướng dẫn thử thách
1 / 1
Implement a Unique Sorted Union
**Objective:** Fulfill the user stories below and get all the tests to pass to complete the lab.
**User Stories:**
1. You should have a function named `uniteUnique`.
1. The `uniteUnique` function should accept two or more arrays as arguments.
1. The function should return a new array that contains unique values from the argument arrays, in the order they are first found in the arguments. For example, an input like `[1, 2, 4], [2, 3, 5]` would have an output of `[1, 2, 4, 3, 5]`.
Vượt qua bài kiểm tra hiện tại để mở khóa bài tiếp theo.
main.js
UTF-8 • Tab Size: 2Kiểm tra bài:⌘↵