> For the complete documentation index, see [llms.txt](https://circular-protocol.gitbook.io/circular-protocol-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://circular-protocol.gitbook.io/circular-protocol-documentation/developer-tools/enterprise-apis/node.js/cep_account.close.md).

# CEP\_Account.close()

With this method you can clear the variables of the class.

### Function Signature

<pre class="language-javascript"><code class="lang-javascript"><strong>close()
</strong></code></pre>

### Parameters

| Parameter Name | Datatype |
| -------------- | -------- |
|                |          |

### Example (CommonJS)

```javascript
const { CEP_Account } = require('circular-enterprise-apis');

const Address = 'your-wallet-address';

let account = new CEP_Account();

async function run() {
    //...
    account.close();
    //...
}

run();
```

### Example (ES Modules)

<pre class="language-javascript"><code class="lang-javascript">import { CEP_Account } from 'circular-enterprise-apis';

const Address = 'your-wallet-address';

let account = new CEP_Account();

async function run() {
    //...
<strong>    account.close();
</strong>    //...        
}

run();
</code></pre>
