bitburner-src/markdown/bitburner.singularity.getcompanypositions.md

43 lines
1.1 KiB
Markdown

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [bitburner](./bitburner.md) &gt; [Singularity](./bitburner.singularity.md) &gt; [getCompanyPositions](./bitburner.singularity.getcompanypositions.md)
## Singularity.getCompanyPositions() method
Get List of Company Positions.
**Signature:**
```typescript
getCompanyPositions(companyName: CompanyName | `${CompanyName}`): JobName[];
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| companyName | [CompanyName](./bitburner.companyname.md) \| \`${[CompanyName](./bitburner.companyname.md)<!-- -->}\` | Name of company to get the position list for. Must be an exact match. |
**Returns:**
[JobName](./bitburner.jobname.md)<!-- -->\[\]
The position list if the company name is valid.
## Remarks
RAM cost: 2 GB \* 16/4/1
This function will return a list of positions at a specific company.
This function will return the position list if the company name is valid.
## Example
```js
const companyName = "Noodle Bar";
const jobList = ns.singularity.getCompanyPositions(companyName);
```