About Lesson
in this lesson we want to learn about JavaScript Symbols, In JavaScript, symbols are primitive data type introduced in ECMAScript 6 (ES6) that represent unique identifier. A symbol is an immutable value that can be used as a property key in objects, much like string. However, unlike strings, symbols are guaranteed to be unique and cannot be recreated.
Join the conversation