Skip to content

Italian

Italian is one of the many supported locales in Faker. It uses the language code it and is available as fakerIT.

Language data

KeyValue
NameItalian
Local NameItaliano
Languageit
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 { fakerIT } from '@faker-js/faker';
// const { fakerIT } = require('@faker-js/faker'); // CJS

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

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

Released under the MIT License.