Quiz Question 1 of 5
Consider the following code. What will be logged to the console?
const mySet = new Set();
mySet.add(1);
mySet.add(2);
mySet.add(1);
mySet.add('1');
console.log(mySet.size);
Choose the correct answer below:
Quizzes are the best way to test your knowlege. Sign up for Treehouse today and prove yourself. We guarantee 100% satisfaction.