Since I went on about it in the comments for @Rocket’s answer, I may as well provide an example that uses no libraries. This requires two new prototype functions, contains and unique
Array.prototype.contains = function(v) {
for (var i = 0; i < this.length; i++) {
if (this[i] === v) return true;
}
return false;
};
Array.prototype.unique = function() {
var arr = [];
for (var i = 0; i < this.length; i++) {
if (!arr.contains(this[i])) {
arr.push(this[i]);
}
}
return arr;
}
var duplicates = [1, 3, 4, 2, 1, 2, 3, 8];
var uniques = duplicates.unique(); // result = [1,3,4,2,8]
console.log(uniques);
For more reliability, you can replace contains with MDN’s indexOf shim and check if each element’s indexOf is equal to -1: documentation
Related Posts:
- How to change CSS using jQuery?
- How to properly use jsPDF library
- Cross-Origin Read Blocking (CORB)
- Uncaught ReferenceError: $ is not defined?
- What does [object Object] mean?
- Remove class using jQuery
- How do I check whether a checkbox is checked in jQuery?
- jQuery document.createElement equivalent?
- convert Hsl to rgb and hex
- Pure JavaScript equivalent of jQuery’s $.ready() – how to call a function when the page/DOM is ready for it [duplicate]
- How can I scroll to an element using jQuery?
- jQuery Get Selected Option From Dropdown
- How can I refresh a page with jQuery?
- How to add jQuery code into HTML Page
- Setting “checked” for a checkbox with jQuery
- Jquery : Refresh/Reload the page on clicking a button
- Bootstrap Dropdown menu is not working
- jquery SlideToggle effect in upward direction?
- How can I determine if a variable is ‘undefined’ or ‘null’?
- Export html table data to Excel using JavaScript / JQuery is not working properly in chrome browser
- Set timeout for ajax (jQuery)
- jQuery Ajax File Upload
- How can I upload files asynchronously with jQuery?
- How do I format date in jQuery datetimepicker?
- How to use npm jquery module?
- Jquery swipe left or right on mobile
- How to move an element into another element?
- document.getElementByID is not a function
- Moment js date time comparison
- How to create a JQuery Clock / Timer
- bootstrap-datetimepicker for bootstrap 4
- Proper way to wait for one function to finish before continuing?
- Access Control Request Headers, is added to header in AJAX request with jQuery
- How to set ‘X-Frame-Options’ on iframe?
- How do I get an element to scroll into view, using jQuery?
- How do I check if string contains substring? [duplicate]
- explode string in jquery
- Play an audio file using jQuery when a button is clicked
- How can I get the last character in a string?
- document.getElementsByClassName().innerHTML always returns “undefined”
- Jquery button click() function is not working
- jQuery: Check if div with certain class name exists
- How to define Global Arrays?
- Why is this jQuery click function not working?
- Disable Chrome strict MIME type checking
- How to uncheck a radio button?
- Attaching ‘onclick’ event to D3 chart background
- How do I check whether a checkbox is checked in jQuery?
- The preferred way of creating a new element with jQuery
- What is jQuery Unobtrusive Validation?
- jQuery count child elements
- CreateElement with id?
- How do I check if an element is hidden in jQuery?
- Set value of hidden input with jquery
- Creating a div element in jQuery
- jQuery equivalent of querySelector
- Convert normal date to unix timestamp
- jQuery replace one class with another
- Clearing my form inputs after submission
- Changing the image source using jQuery
- Get class list for element with jQuery
- Reload an iframe with jQuery
- How to manage a redirect request after a jQuery Ajax call
- How do you remove all the options of a select box and then add one option and select it with jQuery?
- Add and remove multiple classes in jQuery
- Get the Highlighted/Selected text
- jQuery: Get selected element tag name
- Only on Firefox “Loading failed for the script with source”
- How to add a button dynamically using jquery
- Why is jquery show() not working in example
- How can I use jQuery to run MySQL queries?
- jQuery if Element has an ID?
- Complex JSON nesting of objects and arrays
- jQuery – Increase the value of a counter when a button is clicked
- Print a div content using Jquery
- Get the size of the screen, current web page and browser window
- How can JavaScript save to a local file?
- How to reload/refresh jQuery dataTable?
- How to find if div with specific id exists in jQuery?
- TypeError: $ is not a function WordPress
- Fully responsive HTML5 video
- HTML anchor link – href and onclick both?
- How can I know which radio button is selected via jQuery?
- jquery toggleClass not working
- JQuery Number Formatting
- How to add jQuery in JS file
- Get query string parameters url values with jQuery / Javascript (querystring)
- How to use aria-expanded=”true” to change a css property
- How can I get my Calculate Contact Form 7 field to update with jQuery? [closed]
- Contact Form 7 – Uncaught TypeError: wpcf7.initForm is not a function [closed]
- AJAX not Working with php as supposed
- is_page_template() written in jquery/javascript
- Cannot use characters ” in jQuery script in WordPress
- On click load iframe [closed]
- Can’t get rid of JQMIGRATE: Migrate is installed, version 3.3.2. Manually updated all the libralies and site. 5.8.2
- Script only works on wordpress home page & only when Jqurery is aded using
- internal anchor links no longer working after upgrade
- Select parent from child class name then add another class name to the parent
- Uncaught ReferenceError: tippy is not defined
- Error – Uncaught TypeError: e.dispatchEvent is not a function