A Symbol is a unique, immutable primitive. Every Symbol() you create is guaranteed distinct — even two with the same description are not equal. Their main job is to be collision-proof object keys.
id = ();
id2 = ();
id === id2;
user = { [id]: , : };
user[id];
