scrimba
JS Deep Dive
Arrays & Sets
Get Unique Sets of Data
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Get Unique Sets of Data
AboutCommentsNotes
Get Unique Sets of Data
Expand for more info
index.js
run
preview
console
const customerDishes = [
"Chicken Wings",
"Fish Sandwich",
"Beef Stroganoff",
"Grilled Cheese",
"Blue Cheese Salad",
"Chicken Wings",
"Reuben Sandwich",
"Grilled Cheese",
"Fish Sandwich",
"Chicken Pot Pie",
"Fish Sandwich",
"Beef Stroganoff"
];
Console
index.html
-6:38