{"id":30506436,"url":"https://github.com/dailc/jsfoundation-perfanalysis","last_synced_at":"2025-08-25T17:19:35.448Z","repository":{"id":217185805,"uuid":"75622192","full_name":"dailc/jsfoundation-perfanalysis","owner":"dailc","description":"js系列性能分析专题，包括各自数组遍历方式，各自变量交换方式，各种数组排序方式等在不同环境下的性能分析","archived":false,"fork":false,"pushed_at":"2016-12-20T01:55:57.000Z","size":664,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-01-15T00:20:31.695Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dailc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2016-12-05T12:22:04.000Z","updated_at":"2024-01-15T00:20:39.108Z","dependencies_parsed_at":"2024-01-15T00:30:55.429Z","dependency_job_id":null,"html_url":"https://github.com/dailc/jsfoundation-perfanalysis","commit_stats":null,"previous_names":["dailc/jsfoundation-perfanalysis"],"tags_count":0,"template":null,"template_full_name":null,"purl":"pkg:github/dailc/jsfoundation-perfanalysis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dailc%2Fjsfoundation-perfanalysis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dailc%2Fjsfoundation-perfanalysis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dailc%2Fjsfoundation-perfanalysis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dailc%2Fjsfoundation-perfanalysis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dailc","download_url":"https://codeload.github.com/dailc/jsfoundation-perfanalysis/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dailc%2Fjsfoundation-perfanalysis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272100964,"owners_count":24873508,"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-08-25T02:00:12.092Z","response_time":1107,"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":[],"created_at":"2025-08-25T17:19:34.775Z","updated_at":"2025-08-25T17:19:35.396Z","avatar_url":"https://github.com/dailc.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jsPerformanceAnalysis\njs系列性能分析专题，包括各自数组遍历方式，各自变量交换方式，各种数组排序方式等在不同环境下的性能分析\n\n## JS性能分析系列\n针对一些常用的js操作,在大量计算后分析各自性能,包括\n\n* 几种常用的数值交换方式分析\n* 几种常用的数组遍历方式分析\n* 几种常用的数组排序方式分析\n\n### 几种常用的数值交换方式分析\nJS几种数值交换方式分析比较,包括tmp变量交换,加减法，异或，数组法等\n\n#### 效果图\n![](https://dailc.github.io/jsPerformanceAnalysis/staticresource/performanceAnalysis/demo_js_performanceAnalysis_jsexchangevalue_1.png)\n![](https://dailc.github.io/jsPerformanceAnalysis/staticresource/performanceAnalysis/demo_js_performanceAnalysis_jsexchangevalue_2.png)\n\n\n#### 示例页面\n[JS几种数值交换方式分析比较](https://dailc.github.io/jsPerformanceAnalysis/html/performanceAnalysis/demo_performanceAnalysis_jsexchangevalue.html)\n\n\n### 几种常用的数组遍历方式分析\nJS中几种常用数组遍历方式分析比较,包括for循环,for in，foreach，map法等\n\n#### 效果图\n![](https://dailc.github.io/jsPerformanceAnalysis/staticresource/performanceAnalysis/demo_js_performanceAnalysis_jsarrayGoThrough_1.png)\n\n#### 示例页面\n[JS中几种常用数组遍历方式分析比较](https://dailc.github.io/html/jsPerformanceAnalysis/performanceAnalysis/demo_performanceAnalysis_jsarrayGoThrough.html)\n\n### JS中几种常用数组排序方式分析比较\nJS中几种常用数组排序方式分析比较,包括冒泡排序,快速排序，插入排序，堆排序，希尔排序，桶排序，计数排序，基数排序，sort等\n\n#### 效果图\n![](https://dailc.github.io/jsPerformanceAnalysis/staticresource/performanceAnalysis/algorithmSort/demo_js_algorithmSort_bucketSort_1.png)\n\n#### 示例页面\n[JS中几种常用数组遍历方式分析比较](https://dailc.github.io/html/jsPerformanceAnalysis/performanceAnalysis/demo_performanceAnalysis_jsarrayGoThrough.html)\n\n## 相关博文\n\n* [JS几种变量交换方式以及性能分析对比](https://dailc.github.io/2016/11/21/baseKnowlenge_javascript_exchangeValue.html)\n* [JS几种数组遍历方式以及性能分析对比](https://dailc.github.io/2016/11/25/baseKnowlenge_javascript_jsarrayGoThrough.html)\n* [排序算法之桶排序的深入理解以及性能分析](https://dailc.github.io/2016/12/03/baseKnowlenge_algorithm_sort_bucketSort.html)\n\n\n## License\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdailc%2Fjsfoundation-perfanalysis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdailc%2Fjsfoundation-perfanalysis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdailc%2Fjsfoundation-perfanalysis/lists"}