From 92c5e05444a3daa14d27459d0da064276ead6e17 Mon Sep 17 00:00:00 2001 From: Arunkumar1712 <116170537+Arunkumar1712@users.noreply.github.com> Date: Thu, 4 Jan 2024 18:01:10 +0530 Subject: [PATCH] Code to remove Duplicate elements in array Code to remove the Duplicate Number from an array without using In built functions --- remove dup.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 remove dup.js diff --git a/remove dup.js b/remove dup.js new file mode 100644 index 0000000..86dda54 --- /dev/null +++ b/remove dup.js @@ -0,0 +1,16 @@ +// removing duplicates from arrray +var a =[1,3,5,3,2,7]; +var arr=[] +for(var i=0;i