Skip to content

Dutch ​

Dutch is one of the many supported locales in Faker. It uses the language code nl and is available as fakerNL.

Language data ​

KeyValue
NameDutch
Local NameNederlands
Languagenl
ScriptLatn
Directionltr

Usage ​

A few commonly localized methods are shown below. Click the refresh button 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();

Released under the MIT License.