Skip to content

English (Canada)

English (Canada) is one of the many supported locales in Faker. It uses the language code en_CA and is available as fakerEN_CA.

Language data

KeyValue
NameEnglish (Canada)
Local NameEnglish (Canada)
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_CA } from '@faker-js/faker';
// const { fakerEN_CA } = require('@faker-js/faker'); // CJS

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

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

Released under the MIT License.