Skip to content

Company

Module to generate company related entries.

Overview

To generate a random company name, use name(). This is localized in many locales.

To generate jargon-filled company catchphrases and buzzwords, use catchPhrase() or buzzPhrase().

bs

Deprecated

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

Use faker.company.buzzPhrase instead.

Generates a random company bs phrase.

Available since v2.0.1

Returns: string

ts
faker.company.bs(): string
faker.company.bs() // 'cultivate synergistic e-markets'

bsAdjective

Deprecated

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

Use faker.company.buzzAdjective instead.

Returns a random company bs adjective.

Available since v2.0.1

Returns: string

ts
faker.company.bsAdjective(): string
faker.company.bsAdjective() // 'one-to-one'

bsBuzz

Deprecated

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

Use faker.company.buzzVerb instead.

Returns a random company bs buzz word.

Available since v2.0.1

Returns: string

ts
faker.company.bsBuzz(): string
faker.company.bsBuzz() // 'empower'

bsNoun

Deprecated

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

Use faker.company.buzzNoun instead.

Returns a random company bs noun.

Available since v2.0.1

Returns: string

ts
faker.company.bsNoun(): string
faker.company.bsNoun() // 'paradigms'

buzzAdjective

Returns a random buzz adjective that can be used to demonstrate data being viewed by a manager.

Available since v8.0.0

Returns: string

ts
faker.company.buzzAdjective(): string
faker.company.buzzAdjective() // 'one-to-one'

buzzNoun

Returns a random buzz noun that can be used to demonstrate data being viewed by a manager.

Available since v8.0.0

Returns: string

ts
faker.company.buzzNoun(): string
faker.company.buzzNoun() // 'paradigms'

buzzPhrase

Generates a random buzz phrase that can be used to demonstrate data being viewed by a manager.

Available since v8.0.0

Returns: string

ts
faker.company.buzzPhrase(): string
faker.company.buzzPhrase() // 'cultivate synergistic e-markets'

buzzVerb

Returns a random buzz verb that can be used to demonstrate data being viewed by a manager.

Available since v8.0.0

Returns: string

ts
faker.company.buzzVerb(): string
faker.company.buzzVerb() // 'empower'

catchPhrase

Generates a random catch phrase that can be displayed to an end user.

Available since v2.0.1

Returns: string

ts
faker.company.catchPhrase(): string
faker.company.catchPhrase() // 'Upgradable systematic flexibility'

catchPhraseAdjective

Returns a random catch phrase adjective that can be displayed to an end user..

Available since v2.0.1

Returns: string

ts
faker.company.catchPhraseAdjective(): string
faker.company.catchPhraseAdjective() // 'Multi-tiered'

catchPhraseDescriptor

Returns a random catch phrase descriptor that can be displayed to an end user..

Available since v2.0.1

Returns: string

ts
faker.company.catchPhraseDescriptor(): string
faker.company.catchPhraseDescriptor() // 'composite'

catchPhraseNoun

Returns a random catch phrase noun that can be displayed to an end user..

Available since v2.0.1

Returns: string

ts
faker.company.catchPhraseNoun(): string
faker.company.catchPhraseNoun() // 'leverage'

companySuffix

Deprecated

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

Use faker.company.name instead.

Returns a random company suffix.

Available since v2.0.1

Returns: string

ts
faker.company.companySuffix(): string
faker.company.companySuffix() // 'and Sons'

name

Generates a random company name.

Available since v7.4.0

Returns: string

ts
faker.company.name(): string
faker.company.name() // 'Zieme, Hauck and McClure'

suffixes

Deprecated

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

Use faker.company.name instead.

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' ]

Released under the MIT License.