Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 🤩
- Host: GitHub
- URL: https://github.com/bittricky/bittricky
- Owner: bittricky
- Created: 2021-07-31T20:18:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T12:06:14.000Z (18 days ago)
- Last Synced: 2024-10-29T14:35:22.357Z (18 days ago)
- Topics: actions, github-profile-readme, markdown
- Homepage:
- Size: 132 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Why, Hello there! 👋🏽
```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();
```