{"id":13609,"date":"2020-03-20T20:11:29","date_gmt":"2020-03-21T03:11:29","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=13609"},"modified":"2023-12-01T02:34:30","modified_gmt":"2023-12-01T10:34:30","slug":"java-arraylist-to-array","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/","title":{"rendered":"ArrayList to Array Java"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Convert ArrayList to Array Java <\/h2>\n\n\n\n<p>When you\u2019re working with an ArrayList, you may encounter a situation where you want to convert it into an array, or vice versa. For instance, you may have a list of stocks in your portfolio stored in an array and want to convert it into an ArrayList.<\/p>\n\n\n\n<p>In Java, the <code>toArray()<\/code> method is used to convert an ArrayList to an array, and the <code>asList()<\/code> method is used to convert a list to an ArrayList. This tutorial will discuss, with reference to examples, how to convert an ArrayList to an array and vice versa in Java.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Java Array and ArrayList<\/h2>\n\n\n\n<p>In Java, arrays are used to store a sequence of zero or more values. For instance, an array may store a list of candies sold at a candy store, or a list of orders that have been placed at a local cafe. Arrays can store any data type such as floats, booleans, and strings.<\/p>\n\n\n\n<p>Here\u2019s an example of an array in Java:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>String[] names = new String[5];<\/pre><\/div>\n\n\n\n<p>In this example, we have initialized an array called <code>names<\/code> which stores five string values.<\/p>\n\n\n\n<p>Before you can use an array in Java, you need to declare its size. In addition, once you have declared the size of an array, it can be difficult to change it.<\/p>\n\n\n\n<p>That\u2019s where the ArrayList class comes in. ArrayList is an implementation of the Java List interface and allows developers to create resizable arrays. When you add or remove an object from an ArrayList, the capacity of the list is automatically changed to reflect the number of values that are stored in the list. In this tutorial, we will simply refer to the ArrayList class as a list.<\/p>\n\n\n\n<p>Here\u2019s an example of an ArrayList in Java:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ArrayList&lt;String&gt; names = new ArrayList&lt;&gt;();<\/pre><\/div>\n\n\n\n<p>In the above example, we have declared an ArrayList called <code>names<\/code> which stores any number of string values.<\/p>\n\n\n\n<p>Now that we know the basics of Java arrays and ArrayLists, we can explore how to convert data using these data types.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Convert List to Array<\/h2>\n\n\n\n<p>In Java, the <code>list.toArray()<\/code> method is used to convert a list to an array.<\/p>\n\n\n\n<p>Suppose we have a list of stocks in our retirement portfolio stored in an ArrayList. We have decided that we want this to be stored in an array because we do not intend on adding new stocks to our retirement portfolio.<\/p>\n\n\n\n<p>We could convert the list with our list of stocks to a Java array using this code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>import java.util.List;\nimport java.util.Arrays;\nimport java.util.ArrayList;\nclass Main {\n\tpublic static void main(String[] args) {\n\t\tList&lt;String&gt; portfolio = new ArrayList&lt;String&gt;();\n\t\tportfolio.add(\"BAM\");\n\t\tportfolio.add(\"GOOGL\");\n\t\tportfolio.add(\"SBUX\");\n\t\tString[] newPortfolio = new String[portfolio.size()];\n\t\tportfolio.toArray(newPortfolio);\n\t\tSystem.out.println(\"Portfolio: \" + Arrays.toString(newPortfolio));\n\t}\n}<\/pre><\/div>\n\n\n\n<p>Our code returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Portfolio: [BAM, GOOGL, SBUX]<\/pre><\/div>\n\n\n\n<p>Let\u2019s break down our code. First, we import three libraries into our program, which are: List, Arrays, and ArrayList. The List library allows us to work with the Java List interface, the ArrayList library allows us to work with ArrayLists, and Arrays allows us to use the <code>toString()<\/code> method to print our array to the console.<\/p>\n\n\n\n<p>Then we declare an ArrayList called portfolio which stores string values. We then use the <code>add()<\/code> method to add three values to our portfolio: BAM, GOOGL, and SBUX.<\/p>\n\n\n\n<p>On the next line of our code, we create an array called <code>newPortfolio<\/code> and initialize the array and the size of the array. We set the capacity of the <code>newPortfolio<\/code> string array &#8212; the number of values it can hold &#8212; to be equal to the length of the portfolio array. So, in this case, the <code>newPortfolio<\/code> array will be capable of holding three values.<\/p>\n\n\n\n<p>Next, we use the <code>toArray()<\/code> method to convert our portfolio ArrayList to an array and assign the <code>newPortfolio<\/code> array the values stored within the variable portfolio. We then use <code>Arrays.toString()<\/code> to convert the <code>newPortfolio<\/code> variable to a readable string of values. Finally, we print out the message <code>Portfolio:<\/code> , followed by the value returned by <code>Arrays.toString()<\/code>, to the console.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Convert Array to List<\/h2>\n\n\n\n<p>The <code>asList()<\/code> method is used to convert an array to an ArrayList in Java.<\/p>\n\n\n\n<p>Let\u2019s return to the retirement portfolio example from earlier. Suppose we had an array of stocks in our retirement portfolio which we want to convert into an ArrayList. We could do so using this code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>import java.util.Arrays;\nimport java.util.List;\nclass Main {\n\tpublic static void main(String[] args) {\n\t\tString[] portfolio = {\"BAM\", \"GOOGL\", \"SBUX\"};\n\t\tList&lt;String&gt; newPortfolio = Arrays.asList(portfolio);\n\t\tSystem.out.println(\"New portfolio: \" + newPortfolio);\n\t}\n}<\/pre><\/div>\n\n\n\n<p>Our code returns: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>New portfolio: [BAM, GOOGL, SBUX]<\/pre><\/div>\n\n\n\n<p>In this example, we have used <code>asList()<\/code> to convert our retirement portfolio array called <code>portfolio<\/code> to a list. Let\u2019s break down our code.<\/p>\n\n\n\n<p>First, we import the Arrays and List packages, which contain the methods we need to convert our array to a list. Then we declare a variable called portfolio which contains an array of the stocks in our retirement portfolio.<\/p>\n\n\n\n<p>On the next line, we use the <code>Arrays.asList()<\/code> method to convert the contents of the <code>portfolio<\/code> array to a list. We then assign the new list to the variable <code>newPortfolio<\/code>. Finally, we print out the message <code>New portfolio:<\/code> , followed by the contents of the <code>newPortfolio<\/code> array<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The Java <code>toArray()<\/code> method is used to convert a list to an array, and the <code>asList()<\/code> method is used to convert an array to a list.<\/p>\n\n\n\n<p>This tutorial discussed, with reference to examples, how to convert an ArrayList to array and an array to an ArrayList in Java. In addition, this tutorial discussed the main difference between the ArrayList class and the array data type. You\u2019re now ready to start converting ArrayLists to arrays, and vice versa, like a professional Java coder!<\/p>\n","protected":false},"excerpt":{"rendered":"Convert ArrayList to Array Java When you\u2019re working with an ArrayList, you may encounter a situation where you want to convert it into an array, or vice versa. For instance, you may have a list of stocks in your portfolio stored in an array and want to convert it into an ArrayList. In Java, the&hellip;","protected":false},"author":240,"featured_media":13610,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17289],"tags":[],"class_list":{"0":"post-13609","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-java"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Java","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":"","is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>ArrayList to Array Java: The Complete Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"Converting ArrayLists to arrays in Java is common. On Career Karma, learn how to use toArray and asList to convert these data types in your code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ArrayList to Array Java\" \/>\n<meta property=\"og:description\" content=\"Converting ArrayLists to arrays in Java is common. On Career Karma, learn how to use toArray and asList to convert these data types in your code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-21T03:11:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T10:34:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/view-of-airport-247791.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"560\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"ArrayList to Array Java\",\"datePublished\":\"2020-03-21T03:11:29+00:00\",\"dateModified\":\"2023-12-01T10:34:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/\"},\"wordCount\":847,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/view-of-airport-247791.jpg\",\"articleSection\":[\"Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/\",\"name\":\"ArrayList to Array Java: The Complete Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/view-of-airport-247791.jpg\",\"datePublished\":\"2020-03-21T03:11:29+00:00\",\"dateModified\":\"2023-12-01T10:34:30+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"Converting ArrayLists to arrays in Java is common. On Career Karma, learn how to use toArray and asList to convert these data types in your code.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/view-of-airport-247791.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/view-of-airport-247791.jpg\",\"width\":1020,\"height\":560},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java\",\"item\":\"https:\/\/careerkarma.com\/blog\/java\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"ArrayList to Array Java\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"ArrayList to Array Java: The Complete Guide | Career Karma","description":"Converting ArrayLists to arrays in Java is common. On Career Karma, learn how to use toArray and asList to convert these data types in your code.","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:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/","og_locale":"en_US","og_type":"article","og_title":"ArrayList to Array Java","og_description":"Converting ArrayLists to arrays in Java is common. On Career Karma, learn how to use toArray and asList to convert these data types in your code.","og_url":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-03-21T03:11:29+00:00","article_modified_time":"2023-12-01T10:34:30+00:00","og_image":[{"width":1020,"height":560,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/view-of-airport-247791.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"ArrayList to Array Java","datePublished":"2020-03-21T03:11:29+00:00","dateModified":"2023-12-01T10:34:30+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/"},"wordCount":847,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/view-of-airport-247791.jpg","articleSection":["Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/","url":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/","name":"ArrayList to Array Java: The Complete Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/view-of-airport-247791.jpg","datePublished":"2020-03-21T03:11:29+00:00","dateModified":"2023-12-01T10:34:30+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"Converting ArrayLists to arrays in Java is common. On Career Karma, learn how to use toArray and asList to convert these data types in your code.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/view-of-airport-247791.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/view-of-airport-247791.jpg","width":1020,"height":560},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/java-arraylist-to-array\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Java","item":"https:\/\/careerkarma.com\/blog\/java\/"},{"@type":"ListItem","position":3,"name":"ArrayList to Array Java"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/13609","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=13609"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/13609\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/13610"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=13609"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=13609"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=13609"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}