Skip to content
On this page

Company

Module to generate company related entries.

bs

Generates a random company bs phrase.

Available since v2.0.1

Returns: string

ts
faker.company.bs(): string
faker.company.bs() // => "deliver distributed mindshare"
faker.company.bs() // 'cultivate synergistic e-markets'

bsAdjective

Returns a random company bs adjective.

Available since v2.0.1

Returns: string

ts
faker.company.bsAdjective(): string
faker.company.bsAdjective() // => "real-time"
faker.company.bsAdjective() // 'one-to-one'

bsBuzz

Returns a random company bs buzz word.

Available since v2.0.1

Returns: string

ts
faker.company.bsBuzz(): string
faker.company.bsBuzz() // => "deliver"
faker.company.bsBuzz() // 'empower'

bsNoun

Returns a random company bs noun.

Available since v2.0.1

Returns: string

ts
faker.company.bsNoun(): string
faker.company.bsNoun() // => "architectures"
faker.company.bsNoun() // 'paradigms'

catchPhrase

Generates a random business catch phrase.

Available since v2.0.1

Returns: string

ts
faker.company.catchPhrase(): string
faker.company.catchPhrase() // => "Optimized maximized paradigm"
faker.company.catchPhrase() // 'Upgradable systematic flexibility'

catchPhraseAdjective

Returns a random catch phrase adjective.

Available since v2.0.1

Returns: string

ts
faker.company.catchPhraseAdjective(): string
faker.company.catchPhraseAdjective() // => "Optimized"
faker.company.catchPhraseAdjective() // 'Multi-tiered'

catchPhraseDescriptor

Returns a random catch phrase descriptor.

Available since v2.0.1

Returns: string

ts
faker.company.catchPhraseDescriptor(): string
faker.company.catchPhraseDescriptor() // => "intermediate"
faker.company.catchPhraseDescriptor() // 'composite'

catchPhraseNoun

Returns a random catch phrase noun.

Available since v2.0.1

Returns: string

ts
faker.company.catchPhraseNoun(): string
faker.company.catchPhraseNoun() // => "knowledge user"
faker.company.catchPhraseNoun() // 'leverage'

companyName

Deprecated

This method is deprecated and will be removed in a future version.

Generates a random company name.

Available since v2.0.1

Parameters

NameTypeDefaultDescription
format?number

The optional format index used to select a format.

Returns: string

ts
faker.company.companyName(format?: number): string
faker.company.companyName() // => "Medhurst - Rau"
faker.company.companyName() // 'Zieme, Hauck and McClure'

companySuffix

Returns a random company suffix.

Available since v2.0.1

Returns: string

ts
faker.company.companySuffix(): string
faker.company.companySuffix() // => "LLC"
faker.company.companySuffix() // 'and Sons'

name

Generates a random company name.

Available since v7.4.0

Parameters

NameTypeDefaultDescription
format?number

The optional format index used to select a format. Deprecated, do not use.

Returns: string

ts
faker.company.name(format?: number): string
faker.company.name() // => "Medhurst - Rau"
faker.company.name() // 'Zieme, Hauck and McClure'

suffixes

Returns an array with possible company name suffixes.

Available since v2.0.1

Returns: string[]

ts
faker.company.suffixes(): string[]
faker.company.suffixes() // => ["Inc","and Sons","LLC","Group"]
faker.company.suffixes() // [ 'Inc', 'and Sons', 'LLC', 'Group' ]

Released under the MIT License.