udarakalpana / javascript_katas

This is katas for learn javascript fundamental concept.
0 stars 0 forks source link

Kata 7: Remove Duplicates #8

Open udarakalpana opened 1 month ago

udarakalpana commented 1 month ago

Write a function that takes a below array and returns a new array with duplicate elements removed.

const numbers = [1, 2, 2, 3, 4, 4, 5]

// Output: [1, 2, 3, 4, 5]

KavishkaImalsha commented 1 month ago

@udarakalpana I started

Tharanga1988 commented 1 month ago

@udarakalpana I Started this