# সিম্বল (Symbol)

**সিম্বলঃ** সিম্বল জাভাস্ক্রিপ্টের একটি বিশেষ ডাটাস্ট্রাকচার ও বিল্ডিন অবজেক্ট । যেইটা আপনাকে গ্যারান্টি দেয় যে সে একটি ইউনিক বা স্বতন্ত্র অবজেক্ট ।

```javascript
var sym1 = Symbol();
var sym2 = Symbol('this is a symbol');
var sym3 = Symbol('this is another symbol');
```

### সিম্বল এর বৈশিষ্ট্যঃ

* **অপরিবর্তিনীয়ঃ** একবার তৈরি হলে একটি Symbol এর মান পরিবর্তন করা যায় না।
* **বর্ণনা যুক্ত করণঃ**  সিম্বলে চাইলে বর্নণা যুক্ত করা যায় যা ঐ কে বোধগম্য করে তুলে এবং ডিবাগিং এও সুবিধা প্রাধান করে থাকে।&#x20;
* **স্বতন্ত্রঃ**  প্রতিবার Symbol() কল করলে একটি নতুন,  স্বতন্ত্র Symbol তৈরি হয়।
* **অনুসন্ধানযোগ্য নয়ঃ** সিম্বল লুপ করে অনুসন্ধান করা যায় না যদি অনুসন্ধান করা ধরকার পরে থাহলে এর কিছু নিজস্ব লুপ বা ইটারেটর মেথড আছে সেগুলো দিয়ে করা লাগে।&#x20;


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nipu.gitbook.io/coding-js/datatype/premitive-data-type/symbol.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
