Course
Symbol
JavaScript Tutorial
This JavaScript tutorial is crafted for beginners to introduce them to the basics and advanced concepts of JavaScript. By the end of this guide, you'll reach a proficiency level that sets the stage for further growth. Aimed at empowering you to progress towards becoming a world-class software developer, this tutorial paves the way for a successful career in web development and beyond.
Symbol Object
JavaScript Symbol
In JavaScript, Symbol is a primitive data type and it was introduced in ECMAScript 6 (ES6). It can be created using the 'Symbol' constructor.
Symbols are immutable and unique, unlike to other primitive data types like strings or numbers. They are especially helpful in situations where a unique identifier is required since they offer a way to create private object properties and avoid naming conflicts. Here, we have listed the properties and methods related to the symbol.
The points given below you should keep in mind while using the symbol.
- Each symbol contains unique values.
- The symbol is immutable. It means you can't update the value of the symbol.
- Symbols are used to define unique object properties.
- The type of the symbol can't be changed.
Syntax
You can follow the syntax below to create a new symbol using the
Symbol()
function.const sym = Symbol([description]);
Here description is an optional parameter. It specifies the symbol description, which you can access using the 'description' property.
Symbol Properties
In the following table, we have listed all the properties of Symbol
Symbol Methods
In the following table, we have listed all the methods of Symbol
Examples
Example: Creating a Symbol
In the example below, We used the
Symbol()
function to create a new symbol. Also, we have passed the string argument while defining the sym2 symbol.You can observe the type of the 'sym1', which is 'symbol', a primitive value.
<html> <body> <p id="output"></p> <script> const sym1 = Symbol(); document.getElementById("output").innerHTML = "The sym1 is: " + sym1.toString() + "<br>" + "The type of sym1 is: " + typeof sym1 + "<br>"; const sym2 = Symbol("description"); document.getElementById("output").innerHTML += "The sym2 is: " + sym2.toString(); </script> </body></html>
Output
When we execute the above script, it will generate an output consisting of the text displayed on the webpage.
The sym1 is: Symbol()The type of sym1 is: symbolThe sym2 is: Symbol(description)
Example: Accessing Symbol Description
Let's look at the following example, where we are going to use the .description to get the description of the symbol.
<html> <body> <p id="output"></p> <script> const sym = Symbol("Welcome to Tutorials Point..."); document.getElementById("output").innerHTML = "The sym description of the symbol is : " + sym.description; </script> </body></html>
Output
On executing the above script, the output window will pop up, displaying the text on the webpage.
The sym description of the symbol is : Welcome to Tutorials Point...
Example: Each Symbol is Unique
In the example below, we have defined the sym1 and sym2 symbols. After that, we compare both variables and print the message accordingly.
Both symbols look similar but are different, which you can see in the output.
<html> <body> <p id="output"></p> <script> const sym1 = Symbol(); const sym2 = Symbol(); if (sym1 == sym2) { document.getElementById("output").innerHTML += "Sym1 and Sym2 are equal."; } else { document.getElementById("output").innerHTML += "Sym1 and Sym2 are not equal."; } </script> </body></html>
Output
After executing, it returns a text indicating that the both the symbols are not equal.
Sym1 and Sym2 are not equal.
Example: Using Symbol as an Object Key
The main purpose of the symbol is to use it as an object key. Here, we have used the 'objId' symbol as a key.
When we print the object by converting it to string or traversing the object properties, it won't print the symbol. So, the symbol can help developers to make object properties private.
<html> <body> <p id="output">The object is: </p> <script> const objId = Symbol(); const person = { name: "John Doe", age: 30, [objId]: "abcd123", } document.getElementById("output").innerHTML += JSON.stringify(person); </script> </body></html>
Output
If we execute the above program, it will generate an output consisting of the text displayed on the webpage.
The object is: {"name":"John Doe","age":30}
Benefits of using Symbols
Here, we have explained the benefits of using symbols in real-time development.
- Unique property keys − Each symbol is unique, even if its description is different. So, you can use the symbol as a key to avoid accidental collision between the keys with the same name. Mainly, it is useful when you need to use the same instance of the object in two different code snippets and need to insert the same properties.
- Non-iterable properties − When you add the symbol as a key in JavaScript and traverse the object properties using the for...in loop, the loop doesn't traverse through the symbol keys.
- Private Members − You can use the symbol to define the private properties in JavaScript classes.
- Avoid overWriting − The symbol is unique, so it avoids overwriting similar properties.