From 61c4d566c25ae2ad678913015080e933d36a5e71 Mon Sep 17 00:00:00 2001 From: Cody <72239807+codyjohnsontx@users.noreply.github.com> Date: Thu, 19 Sep 2024 03:43:09 -0500 Subject: [PATCH] Add new resource to symbol, refine documentation for clarity and flow. (#7163) --- .../javascript/content/symbol@R6ICrk6vjoBxx5nRGo4Jg.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/javascript/content/symbol@R6ICrk6vjoBxx5nRGo4Jg.md b/src/data/roadmaps/javascript/content/symbol@R6ICrk6vjoBxx5nRGo4Jg.md index 6bce37738..da5012074 100644 --- a/src/data/roadmaps/javascript/content/symbol@R6ICrk6vjoBxx5nRGo4Jg.md +++ b/src/data/roadmaps/javascript/content/symbol@R6ICrk6vjoBxx5nRGo4Jg.md @@ -1,8 +1,11 @@ # 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. +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 no property key collisions occur. Each Symbol value is distinct, even when multiple are 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) +- [@article@Symbol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol) +- [@video@Symbols in Javascript](https://www.youtube.com/watch?v=E5Bblr-SFbA) +