Skip to content
View CVFA-Dev's full-sized avatar
Block or Report

Block or report CVFA-Dev

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
CVFA-Dev/README.md
class Myself {
  constructor(info) {
    this.info = info;
  }

  introduction() {
    const introLines = [
      `Hello, I'm ${this.info.nickname}.`,
      `I'm ${this.info.age} years old.`,
      `I'm a ${this.info.occupation} with ${this.info.experience} years of experience.`,
      `You can find me on GitHub: ${this.info.github}`,
      `And on GitLab: ${this.info.gitlab}`,
      `Check out my website: ${this.info.website}`
    ];

    let lineIndex = 0;
    const interval = setInterval(() => {
      if (lineIndex < introLines.length) {
        document.getElementById("intro").innerHTML += introLines[lineIndex] + "<br>";
        lineIndex++;
      } else {
        clearInterval(interval);
      }
    }, 1000);
  }
}

// Define my informations
const MyInfo = {
  nickname: "Cavifeal",
  age: 15,
  occupation: "JavaScript developer",
  experience: 5,
  github: "https://github.com/CVFA-Dev",
  gitlab: "https://gitlab.com/CVFA",
  website: "https://cvfa.vercel.app/"
};

// Create a Myself object
const me = new Myself(MyInfo);

// Introduce myself
me.introduction();

Popular repositories

  1. 1Hosts 1Hosts Public template

    Forked from badmojr/1Hosts

    World's most advanced DNS filter-/blocklists!

    HTML

  2. CVFA-Dev CVFA-Dev Public

    Config files for my GitHub profile.