{"id":61,"date":"2021-01-17T19:28:29","date_gmt":"2021-01-17T11:28:29","guid":{"rendered":"http:\/\/gjweb.top\/?p=61"},"modified":"2021-01-17T19:28:31","modified_gmt":"2021-01-17T11:28:31","slug":"%e8%a7%a3%e6%9e%84%e8%b5%8b%e5%80%bc","status":"publish","type":"post","link":"https:\/\/gjweb.top\/?p=61","title":{"rendered":"\u89e3\u6784\u8d4b\u503c"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\u6570\u7ec4\u7684\u89e3\u6784\u8d4b\u503c<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>\u5982\u679c\u5339\u914d\u4e0d\u5230,\u5219\u53d8\u91cf\u662fundefined<\/li><li>\u5982\u679c\u7b49\u53f7\u53f3\u8fb9\u4e0d\u662f\u6570\u7ec4(\u4e0d\u53ef\u904d\u5386\u7684\u7ed3\u6784\u4e00\u5305\u62ec\u5bf9\u8c61),\u62a5\u9519<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>{\r\n    let arr = &#91;10,20,30]\r\n    let &#91;a,b,c] = arr;\r\n    console.log(a,b,c) \/\/10,20,30\r\n}\r\n{\r\n    \/**\u9ed8\u8ba4\u503c *\/\r\n    let &#91;a=true] = &#91;];\r\n    console.log(a) \/\/true\r\n}\r\n{\r\n    \/*\u6570\u7ec4\u89e3\u6784\u8d4b\u503c *\/\r\n    let &#91;a,b,...c] = &#91;1,2,3,4,5,6,7]\r\n    console.log(a) \/\/1\r\n    console.log(b) \/\/2\r\n    console.log(c) \/\/&#91;3,4,5,6,7]\r\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u5bf9\u8c61\u7684\u89e3\u6784\u8d4b\u503c<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u5982\u679c\u5339\u914d\u4e0d\u5230,\u5219\u53d8\u91cf\u662fUndefined<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\r\n    let {aoo:ooo} = {aoo:'aaa',brr:'bbb'}\r\n    \/\/aoo\u662f\u5339\u914d\u6a21\u5f0f\r\n    \/\/ooo\u662f\u53d8\u91cf\r\n    console.log(ooo) \/\/aaa\r\n}\r\n{\r\n    \/**\u6a21\u5f0f\u5339\u914d\u7528\u4f8b *\/\r\n    let obj ={\r\n        arr:&#91;\r\n            '111',\r\n            {brr:222}\r\n        ]\r\n    };\r\n    let {arr,arr:&#91;x,{brr}]} = obj\r\n    console.log(arr,x,brr) \r\n}\r\n{\r\n    \/**\u9ed8\u8ba4\u503c\u751f\u6548\u7684\u6761\u4ef6\u662f,\u5bf9\u8c61\u7684\u5c5e\u6027\u503c\u4e25\u683c\u7b49\u4e8eundefined*\/\r\n    let {a=true} = {a:undefined}\r\n    console.log(a) \/\/true\r\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u5b57\u7b26\u4e32\u89e3\u6784\u8d4b\u503c<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u7c7b\u4f3c\u4e8e\u6570\u7ec4\u7684\u5bf9\u8c61\u90fd\u6709\u4e00\u4e2alength\u5c5e\u6027,\u53ef\u4ee5\u5bf9\u8fd9\u4e2a\u5c5e\u6027\u89e3\u6784\u8d4b\u503c<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\r\n    let &#91;a,b,c] = \"hello\"\r\n    console.log(a,b,c); \/\/ h e l\r\n    let {length:len} = \"hello\"\r\n    console.log(len) \/\/5\r\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u6570\u503c\u548c\u5e03\u5c14\u503c\u7684\u89e3\u6784\u8d4b\u503c<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u5982\u679c\u7b49\u53f7\u53f3\u8fb9\u662f\u6570\u503c\u548c\u5e03\u5c14\u503c,\u5219\u4f1a\u5148\u8f6c\u4e3a\u5bf9\u8c61<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\r\n    let {toString:s} = 123\r\n    console.log(s)\r\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u51fd\u6570\u7684\u89e3\u6784\u8d4b\u503c<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u5e94\u7528\u573a\u666f<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\r\n    function test (){\r\n        return &#91;1,2]\r\n    }\r\n    let a,b;\r\n    &#91;a,b] = test()\r\n    console.log(a,b)\r\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u6570\u7ec4\u7684\u89e3\u6784\u8d4b\u503c \u5982\u679c\u5339\u914d\u4e0d\u5230,\u5219\u53d8\u91cf\u662fundefined \u5982\u679c\u7b49\u53f7\u53f3\u8fb9\u4e0d\u662f\u6570\u7ec4(\u4e0d\u53ef\u904d\u5386\u7684\u7ed3\u6784\u4e00\u5305\u62ec\u5bf9\u8c61),\u62a5 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[],"class_list":["post-61","post","type-post","status-publish","format-standard","hentry","category-javascript"],"_links":{"self":[{"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/posts\/61","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gjweb.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=61"}],"version-history":[{"count":0,"href":"https:\/\/gjweb.top\/index.php?rest_route=\/wp\/v2\/posts\/61\/revisions"}],"wp:attachment":[{"href":"https:\/\/gjweb.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=61"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gjweb.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=61"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gjweb.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=61"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}