{"id":176,"date":"2020-11-30T04:16:02","date_gmt":"2020-11-30T04:16:02","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=176"},"modified":"2021-05-31T05:36:32","modified_gmt":"2021-05-31T04:36:32","slug":"working-with-arrays-in-java","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/","title":{"rendered":"Working With Arrays in Java"},"content":{"rendered":"\n<p>Arrays refer to a sequential collection of elements of the same type. It is used to store a collection of data. Unlike <a href=\"https:\/\/codeflarelimited.com\/blog\/category\/javascript\/\" target=\"_blank\" rel=\"noreferrer noopener\">Javascript<\/a> where an array can hold many elements of different data types, an array in Java holds a fixed number of values of a single type.<\/p>\n\n\n\n<p>Immediately after creating an array, its length is fixed. Each item in an array is referred to as an element, and each element can be accessed by its numerical index.<\/p>\n\n\n\n<p>An array index begins from 0 and begins to increment for the given length of the array.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"454\" height=\"163\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/Screenshot-2020-11-30-at-04.34.50.png\" alt=\"arrays in java\" class=\"wp-image-177\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/Screenshot-2020-11-30-at-04.34.50.png 454w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/Screenshot-2020-11-30-at-04.34.50-300x108.png 300w\" sizes=\"auto, (max-width: 454px) 100vw, 454px\" \/><figcaption><strong>An array illustration from Oracle<\/strong><\/figcaption><\/figure>\n\n\n\n<p><strong>Syntax<\/strong><\/p>\n\n\n\n<p>dataType [] arrayRefValue;  \/\/Preferred way<\/p>\n\n\n\n<p>dataTaype arrayRefValue []; \/\/Not so preferred way<\/p>\n\n\n\n<p><strong>Processing Arrays<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"java\" class=\"language-java\">public class TestArray {\npublic static void main(String [] args) {\ndouble [] myList = {1.2, 1.4, 2.5, 4.5, 1.6}\nSystem.out.println(myList[0]) \/\/ 1.2\nSystem.out.println(myList[1]) \/\/ 1.4\nSystem.out.println(myList[2]) \/\/ 2.5\nSystem.out.println(myList[3]) \/\/ 4.5\nSystem.out.println(myList[4]) \/\/ 1.6\n}\n}<\/code><\/pre>\n\n\n\n<p><strong>Summing All Elements in an Array<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"java\" class=\"language-java\">public class TestArray {\npublic static void main(String [] args) {\ndouble [] myList = {1.2, 1.4, 2.5, 4.5, 1.6}\ndouble total = 0;\nfor(int i=0; i&lt;myList.length; i++){\ntotal +=myList[i];\n}\nSystem.out.println(\"Total is \"+total); \/\/11.2\n}\n}<\/code><\/pre>\n\n\n\n<p><strong>Finding The Largest Element in an Array<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"java\" class=\"language-java\">public class TestArray {\npublic static void main(String [] args) {\ndouble [] myList = {1.2, 1.4, 2.5, 4.5, 1.6}\ndouble max = myList[0];\nfor(int i=0; i&lt;myList.length; i++){\nif(myList[i] &gt; max) max = myList[i];\n}\nSystem.out.println(\"Largest value is \"+max); \/\/4.5\n}\n}<\/code><\/pre>\n\n\n\n<p><a href=\"https:\/\/docs.oracle.com\/javase\/tutorial\/java\/nutsandbolts\/arrays.html#:~:text=An%20array%20is%20a%20container,creation%2C%20its%20length%20is%20fixed.&amp;text=Each%20item%20in%20an%20array,accessed%20by%20its%20numerical%20index.\" target=\"_blank\" rel=\"noreferrer noopener\">See the official Java documentation for Arrays<\/a><\/p>\n\n\n\n<p><strong>THE END.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Arrays refer to a sequential collection of elements of the same type. It is used to store a<\/p>\n","protected":false},"author":1,"featured_media":178,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[25],"tags":[45,27,46],"class_list":["post-176","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-java","tag-arrays","tag-java","tag-sum-all-elements-in-an-array"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Working With Arrays in Java<\/title>\n<meta name=\"description\" content=\"Arrays refer to a sequential collection of elements of the same type. It is used to store a collection of data. Immediately after creating ...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Working With Arrays in Java\" \/>\n<meta property=\"og:description\" content=\"Arrays refer to a sequential collection of elements of the same type. It is used to store a collection of data. Immediately after creating ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2020-11-30T04:16:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-31T04:36:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/java.png\" \/>\n\t<meta property=\"og:image:width\" content=\"534\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"Working With Arrays in Java\",\"datePublished\":\"2020-11-30T04:16:02+00:00\",\"dateModified\":\"2021-05-31T04:36:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/\"},\"wordCount\":139,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/java.png\",\"keywords\":[\"Arrays\",\"java\",\"sum all elements in an array\"],\"articleSection\":[\"java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/\",\"name\":\"Working With Arrays in Java\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/java.png\",\"datePublished\":\"2020-11-30T04:16:02+00:00\",\"dateModified\":\"2021-05-31T04:36:32+00:00\",\"description\":\"Arrays refer to a sequential collection of elements of the same type. It is used to store a collection of data. Immediately after creating ...\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/java.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/java.png\",\"width\":534,\"height\":291,\"caption\":\"java arrays\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/working-with-arrays-in-java\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"java\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/java\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Working With Arrays in Java\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Working With Arrays in Java","description":"Arrays refer to a sequential collection of elements of the same type. It is used to store a collection of data. Immediately after creating ...","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:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/","og_locale":"en_US","og_type":"article","og_title":"Working With Arrays in Java","og_description":"Arrays refer to a sequential collection of elements of the same type. It is used to store a collection of data. Immediately after creating ...","og_url":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2020-11-30T04:16:02+00:00","article_modified_time":"2021-05-31T04:36:32+00:00","og_image":[{"width":534,"height":291,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/java.png","type":"image\/png"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"Working With Arrays in Java","datePublished":"2020-11-30T04:16:02+00:00","dateModified":"2021-05-31T04:36:32+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/"},"wordCount":139,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/java.png","keywords":["Arrays","java","sum all elements in an array"],"articleSection":["java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/","url":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/","name":"Working With Arrays in Java","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/java.png","datePublished":"2020-11-30T04:16:02+00:00","dateModified":"2021-05-31T04:36:32+00:00","description":"Arrays refer to a sequential collection of elements of the same type. It is used to store a collection of data. Immediately after creating ...","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/java.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/java.png","width":534,"height":291,"caption":"java arrays"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/working-with-arrays-in-java\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"java","item":"https:\/\/codeflarelimited.com\/blog\/java\/"},{"@type":"ListItem","position":3,"name":"Working With Arrays in Java"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/java.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/176","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=176"}],"version-history":[{"count":2,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/176\/revisions"}],"predecessor-version":[{"id":659,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/176\/revisions\/659"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/178"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=176"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=176"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=176"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}