I have an array, for example nums = [1, 1, 2, 3, 3] on JavaScript;
How can I create an array with unique numbers that do not repeat? Thank you very much for the answer 🙂
const nums = [1, 1, 2, 3, 3];
function uniqueNums(nums) {
};
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
I have an array, for example nums = [1, 1, 2, 3, 3] on JavaScript;
How can I create an array with unique numbers that do not repeat? Thank you very much for the answer 🙂
const nums = [1, 1, 2, 3, 3];
function uniqueNums(nums) {
};