Interface Company

Generator to generate company related entries.

interface Company {
    blurb(): string;
    bs(): string;
    buzzword(): string;
    company(): string;
    companySuffix(): string;
    job(): Record<string, string>;
    jobDescriptor(): string;
    jobLevel(): string;
    jobTitle(): string;
    slogan(): string;
}

Methods

  • Brief description or summary of a company's purpose, products, or services.

    Returns string

    a random blurb

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.company.blurb())
    }

    Output (formatted as JSON value)

    "Pride"
    
  • Random bs company word.

    Returns string

    a random bs

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.company.bs())
    }

    Output (formatted as JSON value)

    "24-7"
    
  • Trendy or overused term often used in business to sound impressive.

    Returns string

    a random buzzword

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.company.buzzword())
    }

    Output (formatted as JSON value)

    "Reverse-engineered"
    
  • Designated official name of a business or organization.

    Returns string

    a random company

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.company.company())
    }

    Output (formatted as JSON value)

    "Xatori"
    
  • Suffix at the end of a company name, indicating business structure, like 'Inc.' or 'LLC'.

    Returns string

    a random company suffix

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.company.companySuffix())
    }

    Output (formatted as JSON value)

    "LLC"
    
  • Position or role in employment, involving specific tasks and responsibilities.

    Returns Record<string, string>

    a random job

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.company.job())
    }

    Output (formatted as JSON value)

    {"Company":"Xatori","Title":"Representative","Descriptor":"Future","Level":"Tactics"}
    
  • Word used to describe the duties, requirements, and nature of a job.

    Returns string

    a random job descriptor

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.company.jobDescriptor())
    }

    Output (formatted as JSON value)

    "Internal"
    
  • Random job level.

    Returns string

    a random job level

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.company.jobLevel())
    }

    Output (formatted as JSON value)

    "Identity"
    
  • Specific title for a position or role within a company or organization.

    Returns string

    a random job title

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.company.jobTitle())
    }

    Output (formatted as JSON value)

    "Representative"
    
  • Catchphrase or motto used by a company to represent its brand or values.

    Returns string

    a random slogan

    import { Faker } from "k6/x/faker"

    let faker = new Faker(11)

    export default function () {
    console.log(faker.company.slogan())
    }

    Output (formatted as JSON value)

    "Pride. De-engineered!"