raluvy95 - Overview

import { Female } from './gender.js';
import { Europe } from './continents.js';

const CatNowBlue = {
    nickname: "cute cat",
    username: ["raluvy95", "catnowblue", "catnowblue.ro"],
    favourite_lang: "TypeScript",
    likes: ["coding", "playing", "drawing"],
    skills: {
        // these are points. The maximium points is 10.
        JavaScript: 9,
        TypeScript: 9,
        Python: 7,
        web: {
            HTML: 10,
            CSS: 5
        },
        Nim: 5,
        Lua: 3,
        Java: 3,
        ShellScript: 1,
        Rust: 0
    },
    age: 20,
    gender: Female,
    country: Europe.Romania,
    job: null
}