# Introduction In this lab, we will learn how to create an array with unique values filtered out based on a comparator function in JavaScript. We will use the `Array.prototype.filter()` and `Array.prototype.every()` methods to create an array containing only the non-unique values. This lab will provide hands-on experience in filtering unique array values using a comparator function.
Click the virtual machine below to start practicing