7.
Which of the following statements about Symbols in JavaScript is false?
Symbol values can be compared with each other for equality.
The Symbol() function can accept a description as a parameter.
A symbol is a primitive data type.
Each Symbol value returned from Symbol() is unique.
Correct: A
ES6 Symbols are unique and immutable primitive values. While they can accept a description when created using Symbol(description), they cannot be compared with each other for equality; i.e., no two symbols are equal, even if their descriptions are the same.