{"id":2702,"date":"2023-06-01T12:12:45","date_gmt":"2023-06-01T03:12:45","guid":{"rendered":"http:\/\/attacktube.com\/?p=2702"},"modified":"2023-06-23T11:12:35","modified_gmt":"2023-06-23T02:12:35","slug":"%e3%80%90javascript%e3%80%91sort%e3%83%a1%e3%82%bd%e3%83%83%e3%83%89-%e3%81%9d%e3%81%ae2","status":"publish","type":"post","link":"https:\/\/attacktube.com\/?p=2702","title":{"rendered":"\u3010JavaScript\u3011sort\u30e1\u30bd\u30c3\u30c9 \u305d\u306e2"},"content":{"rendered":"\n<p>\u6587\u5b57\u5217,\u6570\u5024,\u771f\u507d\u5024\u3092\u6301\u3064\u914d\u5217\u3092sort\u30e1\u30bd\u30c3\u30c9\u3067\u4e26\u3073\u66ff\u3048\u308b\u306a\u3089\u6b21\u306e\u3088\u3046\u306a\u6bd4\u8f03\u95a2\u6570\u3092\u4f7f\u3063\u3066\u4e26\u3073\u66ff\u3048\u308b\u3002<\/p>\n\n\n\n<!--more-->\n\n\n\n<br>\n<script async=\"\" src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-3461056110605997\" crossorigin=\"anonymous\"><\/script>\n<ins class=\"adsbygoogle\" style=\"display:block; text-align:center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3461056110605997\" data-ad-slot=\"3137443461\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script>\n<br>\n\n\n\n<pre><code>\n\nconst n = [&quot;m&quot;, &quot;M&quot;, &quot;aa&quot;, true, &quot;a&quot;, 4, 8, 42, &quot;A&quot;, false];\nconsole.log(n);\nn.sort(function(a, b) {\n    if (a === b) {\n        return 0;\n    }else if (typeof a === typeof b) {\n        return a &lt; b ? -1 : 1;\n    }else{\n        return typeof a &lt; typeof b ? -1 : 1;\n    }\n});\nconsole.log(n);\n\n\n\/*\n\nArray(10) [ &quot;m&quot;, &quot;M&quot;, &quot;aa&quot;, true, &quot;a&quot;, 4, 8, 42, &quot;A&quot;, false ]\nArray(10) [ false, true, 4, 8, 42, &quot;A&quot;, &quot;M&quot;, &quot;a&quot;, &quot;aa&quot;, &quot;m&quot; ]\n\n*\/\n<\/code><\/pre>\n\n\n\n<p>\u914d\u5217\u306e\u8981\u7d20\u304c\u6587\u5b57\u5217,\u771f\u507d\u5024,\u6570\u5024\u306e\u5834\u5408\u306b\u4e26\u3073\u66ff\u3048\u3092\u884c\u3046\u3002<br>\u6587\u5b57\u5217\u304c\u82f1\u8a9e\u306e\u5834\u5408\u306f\u82f1\u8a9e\u306e\u5c0f\u6587\u5b57\u306e\u6b21\u306b\u82f1\u8a9e\u306e\u5927\u6587\u5b57\u304c\u4e26\u3076\u3088\u3046\u306b\u3059\u308b\u3002<\/p>\n\n\n\n<pre><code>\n\nconst n = [&quot;c\u3044&quot;,&quot;\u3042b&quot;,&quot;\u3042A&quot;,&quot;\u3042B&quot;,&quot;Hello&quot;, 100,&quot;C\u3044&quot;,&quot;1A&quot;, &quot;101&quot;, &quot;200&quot;, true, &quot;1a&quot;, &quot;hello&quot;, &quot;\u3042a&quot;, &quot;b9&quot;, 1, &quot;B9&quot;, 12, &quot;A&quot;, false, &quot;\u3046&quot;, &quot;\u6d77&quot;,&quot;22&quot;,&quot;2&quot;,1,11];\n\nconsole.log(&quot;---sort\u524d---&quot;);\nn.forEach((element, i) =&gt; {\n    console.log(&quot;n[&quot; + i + &quot;] = &quot; + element);\n});\n\n\/*\n\n\u914d\u5217\u306e\u8981\u7d20\u304c\u6587\u5b57\u5217,\u771f\u507d\u5024,\u6570\u5024\u306e\u5834\u5408\u306b\u4e26\u3073\u66ff\u3048\u3092\u884c\u3046\u3002\n\u6587\u5b57\u5217\u304c\u82f1\u8a9e\u306e\u5834\u5408\u306f,\u82f1\u8a9e\u306e\u5c0f\u6587\u5b57\u306e\u6b21\u306b\u82f1\u8a9e\u306e\u5927\u6587\u5b57\u304c\u4e26\u3076\u3088\u3046\u306b\u3059\u308b\u3002\n\n*\/\n\nn.sort(function(a, b) {\n\n    if (a === b) {\n        return 0;\n    } else if (typeof a === &quot;string&quot; &amp;&amp; typeof b === &quot;string&quot;) {\n\n        const lowerA = a.toLowerCase();\n        const lowerB = b.toLowerCase();\n\n        if (lowerA &lt; lowerB) {\n            return -1;\n        } else if (lowerA &gt; lowerB) {\n            return 1;\n        } else if (a &lt; b) {\n            return 1;\n        } else if (a &gt; b) {\n            return -1;\n        } else {\n            return 0;\n        }\n\n    } else if (typeof a === typeof b) {\n        return a &lt; b ? -1 : 1;\n    } else {\n        return typeof a &lt; typeof b ? -1 : 1;\n    }\n});\n\nconsole.log(&quot;---sort\u5f8c---&quot;);\nn.forEach((element, i) =&gt; {\n    console.log(&quot;n[&quot; + i + &quot;] = &quot; + element);\n});\n\n\/*\n\n---sort\u524d--- \nn[0] = c\u3044 \nn[1] = \u3042b \nn[2] = \u3042A \nn[3] = \u3042B \nn[4] = Hello \nn[5] = 100 \nn[6] = C\u3044 \nn[7] = 1A \nn[8] = 101 \nn[9] = 200 \nn[10] = true \nn[11] = 1a \nn[12] = hello \nn[13] = \u3042a \nn[14] = b9 \nn[15] = 1 \nn[16] = B9 \nn[17] = 12 \nn[18] = A \nn[19] = false \nn[20] = \u3046 \nn[21] = \u6d77 \nn[22] = 22 \nn[23] = 2 \nn[24] = 1 \nn[25] = 11 \n---sort\u5f8c--- \nn[0] = false \nn[1] = true \nn[2] = 1 \nn[3] = 1 \nn[4] = 11 \nn[5] = 12 \nn[6] = 100 \nn[7] = 101 \nn[8] = 1a \nn[9] = 1A \nn[10] = 2 \nn[11] = 200 \nn[12] = 22 \nn[13] = A \nn[14] = b9 \nn[15] = B9 \nn[16] = c\u3044 \nn[17] = C\u3044 \nn[18] = hello \nn[19] = Hello \nn[20] = \u3042a \nn[21] = \u3042A \nn[22] = \u3042b \nn[23] = \u3042B \nn[24] = \u3046 \nn[25] = \u6d77\n\n*\/\n\n<\/code><\/pre>\n\n\n\n<script type=\"text\/javascript\">\njQuery(function($){\n$(\".jp-video\").hide();\n});\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>\u6587\u5b57\u5217,\u6570\u5024,\u771f\u507d\u5024\u3092\u6301\u3064\u914d\u5217\u3092sort\u30e1\u30bd\u30c3\u30c9\u3067\u4e26\u3073\u66ff\u3048\u308b\u306a\u3089\u6b21\u306e\u3088\u3046\u306a\u6bd4\u8f03\u95a2\u6570\u3092\u4f7f\u3063\u3066\u4e26\u3073\u66ff\u3048\u308b\u3002<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3],"tags":[],"class_list":["post-2702","post","type-post","status-publish","format-standard","hentry","category-javascript"],"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/attacktube.com\/index.php?rest_route=\/wp\/v2\/posts\/2702","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/attacktube.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/attacktube.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/attacktube.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/attacktube.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2702"}],"version-history":[{"count":16,"href":"https:\/\/attacktube.com\/index.php?rest_route=\/wp\/v2\/posts\/2702\/revisions"}],"predecessor-version":[{"id":3405,"href":"https:\/\/attacktube.com\/index.php?rest_route=\/wp\/v2\/posts\/2702\/revisions\/3405"}],"wp:attachment":[{"href":"https:\/\/attacktube.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2702"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/attacktube.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2702"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/attacktube.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2702"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}