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