Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@W3BGUY
Created September 10, 2019 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save W3BGUY/00902f9d8a228f7299e7a2d1c494f109 to your computer and use it in GitHub Desktop.
Save W3BGUY/00902f9d8a228f7299e7a2d1c494f109 to your computer and use it in GitHub Desktop.
On liner that can be used to remove duplicates from an array. Great for use in NetSuite scripts.
var newArray=oldArray.reduce(function(a,b){if(a.indexOf(b)<0)a.push(b);return a;},[]);
@bhavanimuppalmani
Copy link

Thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment