Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zevhys/zevhys
Description Status
https://github.com/zevhys/zevhys
profile readme-profile
Last synced: 28 days ago
JSON representation
Description Status
- Host: GitHub
- URL: https://github.com/zevhys/zevhys
- Owner: Zevhys
- License: mit
- Created: 2023-07-29T12:01:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-21T03:14:17.000Z (about 1 month ago)
- Last Synced: 2024-11-21T04:19:37.080Z (about 1 month ago)
- Topics: profile, readme-profile
- Homepage:
- Size: 3.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
🔖 A Passionate Web Developer based in Indonesia
☘️ Chasing a degree in informatics engineering while exploring the intricacies of coding
my-app/
├─ node_modules/
├─ public/
│ ├─ favicon.ico
│ ├─ index.html
│ ├─ robots.txt
├─ src/
│ ├─ style.css
│ ├─ script.js
├─ .gitignore
├─ package.json
├─ README.md```js
function prioritizeTasks(tasks) {
tasks.sort((a, b) => a - b);tasks.forEach(task => {
console.log(`Executing task: ${task}`);
});
}const tasks = [3, 1, 2];
prioritizeTasks(tasks);
```Loading...