Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bittricky/bittricky

Github Profile Readme 🤩
https://github.com/bittricky/bittricky

actions github-profile-readme markdown

Last synced: 4 days ago
JSON representation

Github Profile Readme 🤩

Awesome Lists containing this project

README

        

## Why, Hello there! 👋🏽



github-snake

```js
class Person {
constructor() {
this.name = "Mitul Patel";
this.languagesSpoken = ["hi_IN", "gu_IN", "en_US"];
this.code = ["Javascript", "Python", "C#"];
}

sayHi = () => {
console.log(`Hey, Thanks for stopping by.`);
};
}

const me = new Person();
me.sayHi();
```