Skip to content
View amirallami-code's full-sized avatar
:octocat:
Learning...
:octocat:
Learning...
  • neurotract
  • 127.0.0.1
Block or Report

Block or report amirallami-code

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
amirallami-code/README.md
const aboutMe = () => {
  const myLife = {
    innerName: "Amirhossein Allami",
    innerBirthday: "October 7",
    quote: "I develop what comes to my head with some style",
    hobbies: ["coding", "algorithm", "game"],
    getHobbiesCount: function() {
      return this.hobbies.length;
    },
    introduce: function() {
      return `Hi, I'm ${this.innerName}. My birthday is on ${this.innerBirthday}.
              One of my favorite quotes is "${this.quote}".
              I enjoy ${this.getHobbiesCount()} hobbies: ${this.hobbies.join(", ")}.`;
    }
  };
  return myLife;
};
const myInfo = aboutMe();
console.log(myInfo.introduce());

Pinned

  1. binary-search-algorithm binary-search-algorithm Public

    This repository contains an implementation of the binary search algorithm. This efficient algorithm is designed to find an item from a sorted list of items. It does so by repeatedly dividing the li…

    JavaScript 3

  2. selection-sorting-algorithm selection-sorting-algorithm Public

    This repository contains an implementation of selection sort, a simple and efficient sorting algorithm.

    JavaScript 2

  3. rock-paper-scissors-game rock-paper-scissors-game Public

    Rock, Paper, Scissors is a classic hand game that has been played for generations. It's a simple yet entertaining way to make quick decisions or settle disputes.

    CSS

  4. travel-company-portfolio travel-company-portfolio Public

    This repository contains a portfolio website for a travel company. The website showcases the company’s services, destinations, and customer reviews.

    HTML