Skip to content

Greek

Greek is one of the many supported locales in Faker. It uses the language code el and is available as fakerEL.

Language data

KeyValue
NameGreek
Local NameΕλληνικά
Languageel
ScriptGrek
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 { fakerEL } from '@faker-js/faker';
// const { fakerEL } = require('@faker-js/faker'); // CJS

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

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

Released under the MIT License.