Add content for symbol data type (#6327)
* Update symbol@R6ICrk6vjoBxx5nRGo4Jg.md Simple introduction to Symbols data type in JS and resources to learn more added * Update src/data/roadmaps/javascript/content/symbol@R6ICrk6vjoBxx5nRGo4Jg.md * Update src/data/roadmaps/javascript/content/symbol@R6ICrk6vjoBxx5nRGo4Jg.md --------- Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>pull/6303/head^2
parent
853603b1f6
commit
30eb1e4095
1 changed files with 8 additions and 1 deletions
@ -1 +1,8 @@ |
||||
# Symbol |
||||
# Symbol |
||||
|
||||
Symbols are a unique and immutable primitive data type in JavaScript, introduced in ECMAScript 6 (ES6). They are often used to create unique property keys for objects, ensuring that no property key collisions occur. Each Symbol value is unique, even if created with the same description. Symbols can be created using the Symbol() function, and their primary use case is to add hidden or special properties to objects that won’t interfere with other properties or methods. |
||||
|
||||
Learn more from the following resources: |
||||
|
||||
- [@article@Symbol data type in JavaScript](https://www.javascripttutorial.net/symbol/) |
||||
- [@article@Symbol type](https://javascript.info/symbol) |
||||
|
Loading…
Reference in new issue