{"id":5418,"date":"2020-02-20T15:45:28","date_gmt":"2020-02-20T10:15:28","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=5418"},"modified":"2020-02-20T15:45:31","modified_gmt":"2020-02-20T10:15:31","slug":"arrays-in-javascript","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/","title":{"rendered":"Arrays in Javascript"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Arrays in Javascript<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Date: 19\/02\/2020<\/h4>\n\n\n\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"255\" height=\"257\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/02\/Screen-Shot-2020-02-20-at-3.37.47-PM.png\" alt=\"\" class=\"wp-image-5420\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2020\/02\/Screen-Shot-2020-02-20-at-3.37.47-PM.png 255w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2020\/02\/Screen-Shot-2020-02-20-at-3.37.47-PM-150x150.png 150w\" sizes=\"auto, (max-width: 255px) 100vw, 255px\" \/><\/figure>\n\n\n\n<p>Array in Javascript has some of the in-built methods that are very much handy when manipulating the array contents than whatever operation you can do with forEach or for a loop. If you know how to handle those in-built methods, you can tackle some of the complex logic without complex implementations. I do use them in everyday work. In this tutorial, though I will not all of those in-built methods, will explain the most useful methods. <\/p>\n\n\n\n<p><strong>Map<\/strong><\/p>\n\n\n\n<p><code>Array.prototype.map(currentValue, index, array)<\/code><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">let 1dArrray = [1, 2,  3, 4]\n\nlet 2dArray = 1dArray.map((currentValue) => {\n    return [currentValue, currentValue]\n});\n\nconsole.log(2dArray) \/\/ [ [1, 1], [ 2, 2], [3, 3], [4, 4] ]<\/pre>\n\n\n\n<p>What happens behind is that no matter what work you do inside the parenthesis it will replace the currentValue with the value you return eventually. If you don&#8217;t &#8216;undefined&#8217; will be there. In other words, the transformation will happen with a current array value. <br><br><strong>Note<\/strong>: it will array with same size<\/p>\n\n\n\n<p><strong>Filter<\/strong><\/p>\n\n\n\n<p><code>Array.prototype.filter(currentValue, index, array)<\/code><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">let oddEven = [1, 2,  3, 4]\nlet even = oddEven.map((currentValue) => {\n    return currentValue % 2 == 0\n});\nconsole.log(even) \/\/ [ 2, 4]<\/pre>\n\n\n\n<p>In this filter case, the difference with a map is it will return array value that satisfies the return statement inside the parenthesis.<br><br><strong>Note<\/strong>: it may or may not array with the same size depending on what you do. but the returned array will be a new array.<\/p>\n\n\n\n<p><strong>Reduce<\/strong>:<\/p>\n\n\n\n<p><code>Array.prototype.reduce((prev, next),initialValue)<\/code><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">let ones = [1, 1, 1, 1, 1, 1]\nlet sum = ones.reduce((prev, next) => {\n  return prev + next;\n}, 100)\n\nconsole.log(sum)  \/\/ 106\n<\/pre>\n\n\n\n<p>The reduce function is very different from the map or filter. It will one return a Number for your array of numbers. If you didn&#8217;t mention initial value, it will take the array value at index 0 as the initial value and index at 1 as the next value for the first iteration. If there is no next value, then iteration will stop as know.<\/p>\n\n\n\n<p>You can also check out slice, reduceRight, and others too. <br><br><strong>Note<\/strong>: splice considered an impure function. To know more about what is pure or not check here <a href=\"https:\/\/www.freecodecamp.org\/news\/what-is-a-pure-function-in-javascript-acb887375dfe\/\">https:\/\/www.freecodecamp.org\/news\/what-is-a-pure-function-in-javascript-acb887375dfe\/<\/a><br><br>For more interesting concepts in javascript, check the below.<br><a href=\"https:\/\/javascript.info\/\">https:\/\/javascript.info\/<\/a><br><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Conclusion<\/h4>\n\n\n\n<p>Thanks for you. If you found it useful share it with others to keep it afloat.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Arrays in Javascript Date: 19\/02\/2020 Introduction Array in Javascript has some of the in-built methods that are very much handy when manipulating the array contents than whatever operation you can do with forEach or for a loop. If you know how to handle those in-built methods, you can tackle some&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Arrays in Javascript<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[351],"tags":[754,661,739],"class_list":{"0":"post-5418","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-javascript","7":"tag-array","8":"tag-javascript","9":"tag-programming","10":"h-entry","12":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Arrays in Javascript Date: 19\/02\/2020 Introduction Array in Javascript has some of the in-built methods that are very much handy when manipulating the array contents than whatever operation you can do with forEach or for a loop. If you know how to handle those in-built methods, you can tackle some&hellip; Continue Reading Arrays in Javascript\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-20T10:15:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-02-20T10:15:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/02\/Screen-Shot-2020-02-20-at-3.37.47-PM.png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Arrays in Javascript\",\"datePublished\":\"2020-02-20T10:15:28+00:00\",\"dateModified\":\"2020-02-20T10:15:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/\"},\"wordCount\":312,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/Screen-Shot-2020-02-20-at-3.37.47-PM.png\",\"keywords\":[\"array\",\"javascript\",\"programming\"],\"articleSection\":[\"Javascript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/Screen-Shot-2020-02-20-at-3.37.47-PM.png\",\"datePublished\":\"2020-02-20T10:15:28+00:00\",\"dateModified\":\"2020-02-20T10:15:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/Screen-Shot-2020-02-20-at-3.37.47-PM.png\",\"contentUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/Screen-Shot-2020-02-20-at-3.37.47-PM.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/arrays-in-javascript\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Arrays in Javascript\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Arrays in Javascript Date: 19\/02\/2020 Introduction Array in Javascript has some of the in-built methods that are very much handy when manipulating the array contents than whatever operation you can do with forEach or for a loop. If you know how to handle those in-built methods, you can tackle some&hellip; Continue Reading Arrays in Javascript","og_url":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2020-02-20T10:15:28+00:00","article_modified_time":"2020-02-20T10:15:31+00:00","og_image":[{"url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/02\/Screen-Shot-2020-02-20-at-3.37.47-PM.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Arrays in Javascript","datePublished":"2020-02-20T10:15:28+00:00","dateModified":"2020-02-20T10:15:31+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/"},"wordCount":312,"commentCount":1,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/02\/Screen-Shot-2020-02-20-at-3.37.47-PM.png","keywords":["array","javascript","programming"],"articleSection":["Javascript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/","url":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/02\/Screen-Shot-2020-02-20-at-3.37.47-PM.png","datePublished":"2020-02-20T10:15:28+00:00","dateModified":"2020-02-20T10:15:31+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/#primaryimage","url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/02\/Screen-Shot-2020-02-20-at-3.37.47-PM.png","contentUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2020\/02\/Screen-Shot-2020-02-20-at-3.37.47-PM.png"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/arrays-in-javascript\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Arrays in Javascript"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-1po","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/5418","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=5418"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/5418\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=5418"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=5418"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=5418"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}