{"id":136,"date":"2022-09-17T17:33:53","date_gmt":"2022-09-17T17:33:53","guid":{"rendered":"https:\/\/mustafauzun.co\/blog\/?p=136"},"modified":"2022-09-17T17:33:53","modified_gmt":"2022-09-17T17:33:53","slug":"javascript-how-to-deep-flat","status":"publish","type":"post","link":"https:\/\/mustafauzun.co\/blog\/javascript-how-to-deep-flat\/","title":{"rendered":"Javascript, how to deep flat"},"content":{"rendered":"\n<p>With the flat function that comes with ES6, we can do deep flatting on array<\/p>\n\n\n\n<p>You can use Infinity to do this.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-js\" data-lang=\"JavaScript\"><code>let arr = [1,2,[3,4,[5,6,[7,8],9]]];\n\narr.flat(Infinity);<\/code><\/pre><\/div>\n\n\n\n<p>Output;<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-js\" data-lang=\"JavaScript\"><code>[\n  1, 2, 3, 4, 5,\n  6, 7, 8, 9\n]<\/code><\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>With the flat function that comes with ES6, we can do deep flatting on array You can use Infinity to do this. Output;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[10,9],"class_list":["post-136","post","type-post","status-publish","format-standard","hentry","category-javascript","tag-es6","tag-javascript"],"_links":{"self":[{"href":"https:\/\/mustafauzun.co\/blog\/wp-json\/wp\/v2\/posts\/136","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mustafauzun.co\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mustafauzun.co\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mustafauzun.co\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mustafauzun.co\/blog\/wp-json\/wp\/v2\/comments?post=136"}],"version-history":[{"count":1,"href":"https:\/\/mustafauzun.co\/blog\/wp-json\/wp\/v2\/posts\/136\/revisions"}],"predecessor-version":[{"id":137,"href":"https:\/\/mustafauzun.co\/blog\/wp-json\/wp\/v2\/posts\/136\/revisions\/137"}],"wp:attachment":[{"href":"https:\/\/mustafauzun.co\/blog\/wp-json\/wp\/v2\/media?parent=136"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mustafauzun.co\/blog\/wp-json\/wp\/v2\/categories?post=136"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mustafauzun.co\/blog\/wp-json\/wp\/v2\/tags?post=136"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}