> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/value/valueexpression/valueexpression.get_dest.md).

# ValueExpression.get\_dest()

`get_dest() -> Union[`[`Value`](/glider-ide/api/value/value.md)`,` [`NoneObject`](/glider-ide/api/internal/noneobject.md)`]`

This function will return '`a`' in this case: '`a = b = c = 5`'

## Query Example

```python
from glider import *


def query():
    instructions = (
        Instructions()
        .new_variable_instructions()
        .exec(1,1)
    )
    for instruction in instructions:
        print(instruction.get_value().get_dest().expression)
    return instructions
```

## Example Output&#x20;

<figure><img src="/files/loXZGZDr0FnXvV71r0av" alt=""><figcaption></figcaption></figure>
