2022-10-21 17:16:00 +02:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home ](./index.md ) > [bitburner ](./bitburner.md ) > [Singularity ](./bitburner.singularity.md ) > [workForCompany ](./bitburner.singularity.workforcompany.md )
## Singularity.workForCompany() method
Work for a company.
< b > Signature:< / b >
```typescript
workForCompany(companyName: string, focus?: boolean): boolean;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2022-11-20 18:07:22 +01:00
| companyName | string | Name of company to work for. Must be an exact match. Optional. If not specified, this argument defaults to the last job that you worked. |
2022-10-21 17:16:00 +02:00
| focus | boolean | Acquire player focus on this work operation. Optional. Defaults to true. |
< b > Returns:< / b >
boolean
True if the player starts working, and false otherwise.
## Remarks
RAM cost: 3 GB \* 16/4/1
2022-11-20 18:07:22 +01:00
This function will set you to start working at your current job at a specified company at which you are employed. If you are already in the middle of some “working” action (such as working for a faction, training at a gym, or creating a program), then running this function will cancel that action.
2022-10-21 17:16:00 +02:00
This function will return true if the player starts working, and false otherwise.
## Example 1
2022-11-20 18:07:22 +01:00
```js
2022-10-21 17:16:00 +02:00
// NS1:
2022-11-20 18:07:22 +01:00
var COMPANY_NAME = "Noodle Bar";
var success = singularity.workForCompany(COMPANY_NAME);
if (!success) tprint("ERROR: Failed to start work at " + COMPANY_NAME + ".");
2022-10-21 17:16:00 +02:00
```
## Example 2
2022-11-20 18:07:22 +01:00
```js
2022-10-21 17:16:00 +02:00
// NS2:
2022-11-20 18:07:22 +01:00
const COMPANY_NAME = "Noodle Bar";
let success = ns.singularity.workForCompany(COMPANY_NAME);
if (!success) ns.tprint(`ERROR: Failed to start work at ${COMPANY_NAME].`);
2022-10-21 17:16:00 +02:00
```