{"id":18614954,"url":"https://github.com/andrewjbateman/javascript-array-functions","last_synced_at":"2025-10-28T07:18:05.849Z","repository":{"id":96860400,"uuid":"157112196","full_name":"AndrewJBateman/javascript-array-functions","owner":"AndrewJBateman","description":":clipboard: Practise using map, sort, reduce and filter functions, from https://JavaScript30.com, Wes Bos course.","archived":false,"fork":false,"pushed_at":"2022-03-15T19:12:51.000Z","size":594,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-15T23:45:29.551Z","etag":null,"topics":["css","html","javascript","javascript30"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AndrewJBateman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-11T19:13:55.000Z","updated_at":"2022-03-15T19:08:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"f8d564bc-5b2b-403f-98cf-c78bf54c1a6c","html_url":"https://github.com/AndrewJBateman/javascript-array-functions","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AndrewJBateman/javascript-array-functions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fjavascript-array-functions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fjavascript-array-functions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fjavascript-array-functions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fjavascript-array-functions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndrewJBateman","download_url":"https://codeload.github.com/AndrewJBateman/javascript-array-functions/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndrewJBateman%2Fjavascript-array-functions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279166108,"owners_count":26117978,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-16T02:00:06.019Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","html","javascript","javascript30"],"created_at":"2024-11-07T03:27:38.612Z","updated_at":"2025-10-16T07:35:09.686Z","avatar_url":"https://github.com/AndrewJBateman.png","language":"JavaScript","readme":"# :zap: Javascript Array Functions\n\n* Wes Bos Youtube Tutorial: [JavaScript Array Cardio Practice - Day 1 — #JavaScript30 4/30](https://www.youtube.com/watch?v=HB1ZC7czKRs\u0026list=PLu8EoSxDXHP6CGK4YVJhL_VWetA865GOH\u0026index=4).\n* **Note:** to open web links in a new window use: _ctrl+click on link_\n\n![GitHub repo size](https://img.shields.io/github/repo-size/AndrewJBateman/javascript-array-functions?style=plastic)\n![GitHub pull requests](https://img.shields.io/github/issues-pr/AndrewJBateman/javascript-array-functions?style=plastic)\n![GitHub Repo stars](https://img.shields.io/github/stars/AndrewJBateman/javascript-array-functions?style=plastic)\n![GitHub last commit](https://img.shields.io/github/last-commit/AndrewJBateman/javascript-array-functions?style=plastic)\n\n## :page_facing_up: Table of contents\n\n* [:zap: Javascript Array Functions](#zap-javascript-array-functions)\n  * [:page_facing_up: Table of contents](#page_facing_up-table-of-contents)\n  * [:books: General info](#books-general-info)\n  * [:camera: Screenshots](#camera-screenshots)\n  * [:signal_strength: Technologies](#signal_strength-technologies)\n  * [:floppy_disk: Setup](#floppy_disk-setup)\n  * [:computer: Code Examples](#computer-code-examples)\n  * [:cool: Features](#cool-features)\n  * [:clipboard: Status \u0026 To-Do List](#clipboard-status--to-do-list)\n  * [:clap: Inspiration](#clap-inspiration)\n  * [:file_folder: License](#file_folder-license)\n  * [:envelope: Contact](#envelope-contact)\n\n## :books: General info\n\n* Tutorial Code using javascript array methods.\n\n## :camera: Screenshots\n\n![Example screenshot](./img/array.png).\n![Example screenshot](./img/boulevard.png).\n\n## :signal_strength: Technologies\n\n* Ran in Google Chrome browser with: [Javascript engine V8 for Windows (x64)](https://v8.dev/).\n\n## :floppy_disk: Setup\n\n* Open `index.html` in browser. If any code is changed the browser needs to be refreshed. Some code is commented out as it is meant to be used with a particular web link.\n\n## :computer: Code Examples\n\n* Sort method used to order an array by birth date.\n\n```javascript\n// 5. Sort the inventors by years lived\nconst yearsLived = inventors.sort((a,b) =\u003e (a.passed - a.year) \u003e (b.passed - b.year)? 1 : -1);\nconsole.table('inventors sorted by years lived', yearsLived);\n```\n\n## :cool: Features\n\n* Includes code to filter DOM elements for key words.\n\n## :clipboard: Status \u0026 To-Do List\n\n* Status: Working.\n* To-Do: Nothing.\n\n## :clap: Inspiration\n\n* Wes Bos Youtube Tutorial: [JavaScript Array Cardio Practice - Day 1 — #JavaScript30 4/30](https://www.youtube.com/watch?v=HB1ZC7czKRs\u0026list=PLu8EoSxDXHP6CGK4YVJhL_VWetA865GOH\u0026index=4).\n\n## :file_folder: License\n\n* N/A\n\n## :envelope: Contact\n\n* Repo created by [ABateman](https://github.com/AndrewJBateman), email: gomezbateman@yahoo.com","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fjavascript-array-functions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrewjbateman%2Fjavascript-array-functions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewjbateman%2Fjavascript-array-functions/lists"}