Finnish
Finnish is one of the many supported locales in Faker. It uses the language code fi and is available as fakerFI.
Language data
| Key | Value |
|---|---|
| Name | Finnish |
| Local Name | suomi |
| Language | fi |
| Script | Latn |
| Direction | ltr |
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 { fakerFI } from '@faker-js/faker';
// const { fakerFI } = require('@faker-js/faker'); // CJS
// Commonly localized methods:
fakerFI.person.fullName();
fakerFI.location.streetAddress();
fakerFI.location.city();
fakerFI.location.state();
fakerFI.location.zipCode();
fakerFI.phone.number();
fakerFI.commerce.productName();
fakerFI.internet.email();
fakerFI.internet.url();
fakerFI.date.month();
fakerFI.date.weekday();
fakerFI.word.noun();
fakerFI.word.verb();
fakerFI.company.name();
// Non-localized methods work as normal:
fakerFI.number.int();