Skip to content

English (Australia)

English (Australia) is one of the many supported locales in Faker. It uses the language code en_AU and is available as fakerEN_AU.

Language data

KeyValue
NameEnglish (Australia)
Local NameEnglish (Australia)
Languageen
ScriptLatn
Directionltr

Usage

A few commonly localized methods are shown below. Reload this page to see more random examples. Not all methods are localized in all locales.

ts
import { fakerEN_AU } from '@faker-js/faker';
// const { fakerEN_AU } = require('@faker-js/faker'); // CJS

// Commonly localized methods:
fakerEN_AU.person.fullName();
fakerEN_AU.location.streetAddress();
fakerEN_AU.location.city();
fakerEN_AU.location.state();
fakerEN_AU.location.zipCode();
fakerEN_AU.phone.number();
fakerEN_AU.commerce.productName();
fakerEN_AU.internet.email();
fakerEN_AU.internet.url();
fakerEN_AU.date.month();
fakerEN_AU.date.weekday();
fakerEN_AU.word.noun();
fakerEN_AU.word.verb();
fakerEN_AU.company.name();

// Non-localized methods work as normal:
fakerEN_AU.number.int();

Released under the MIT License.