{"id":12689,"date":"2020-12-20T15:16:55","date_gmt":"2020-12-20T23:16:55","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=12689"},"modified":"2023-12-01T04:06:17","modified_gmt":"2023-12-01T12:06:17","slug":"javascript-concat-string","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/","title":{"rendered":"JavaScript Concatenate Strings: A Guide"},"content":{"rendered":"\n<p><em>The JavaScript concat() method merges the contents of two or more strings. You can also use the + concatenation operator to merge multiple strings. The concatenation operator is preferred in most cases as it is more concise.<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>Concatenation is a technique used in programming to merge two or more strings into one value. For example, you may have two lists of employees stored as strings, one for each branch in your company. You may want to merge them all into one list of all your employees.<\/p>\n\n\n\n<p>There are two ways to concatenate a string:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Using the concatenation operator (+).<\/li><li>Using the concat() method.<\/li><\/ul>\n\n\n\n<p>In this tutorial, we are going to discuss how to concatenate a <a href=\"https:\/\/careerkarma.com\/blog\/javascript-string-interpolation\/\">JavaScript string<\/a>. We&#8217;ll walk through the plus sign concatenation operator (+) and the string concat() method. Without further ado, let&#8217;s get started!<\/p>\n\n\n\n<p>The concat() method has browser support on all modern browsers.<\/p>\n\n\n\n<p>There is a method called Array.concat() that concatenates two arrays. In this article we&#8217;re going to focus on the string concat() method.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">JavaScript String Concatenation<\/h2>\n\n\n\n<p>You can merge two or more JavaScript strings into one. The process of merging strings is called JavaScript string concatenation. To concatenate strings without relying on any built-in functions, you can use the + operator.<\/p>\n\n\n\n<p>Here is the syntax for the concatenation operator:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&quot;string1&quot; + &quot;string2&quot;<\/pre><\/div>\n\n\n\n<p>Concatenation is useful if you have separate string values that you want to appear as one. For instance, say that you have two strings. One string contains the forename of a user. The other string contains the surname. You can merge these two values to get the whole name as one string.<\/p>\n\n\n\n<p>Say we want to merge two strings together. One string is the forename of a customer. Another string is the surname of that customer. Let&#8217;s merge these two strings using the &#8220;+&#8221; operator:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>var bill_johnson = &quot;Bill&quot; + &quot;Johnson&quot;;\n\nconsole.log(bill_johnson);<\/pre><\/div>\n\n\n\n<p>Our code returns: <em>\u201cBillJohnson\u201d<\/em>. Our strings are not automatically separated by a space. If we want a space between our strings, we need to specify one within one of our strings:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&quot;Bill &quot; + &quot;Johnson&quot;<\/pre><\/div>\n\n\n\n<p>Our code now returns: &#8220;Bill Johnson&#8221;. This is because we added a space in the &#8220;Bill &#8221; string.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">JavaScript String concat() Method<\/h2>\n\n\n\n<p>The JavaScript concat() method combines two or more strings. concat() accepts as many parameters as you want, each one representing a string to merge. The concat() method is an alternative to the concatenation operator.<\/p>\n\n\n\n<p>Here\u2019s the syntax for the JavaScript concat() string function:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>string_name.concat(string_one, string_two, string_three);\n<\/pre><\/div>\n\n\n\n<p>You can pass as many parameters as you would like into concat().<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">concat() JavaScript Example<\/h3>\n\n\n\n<p>Let\u2019s use an example to illustrate how the concat() string function works in action. Let\u2019s say that we have a user\u2019s first name, middle and second name and want to combine them into one string. We could use the following code to achieve this goal:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>var first_name = 'Lucy';\nvar middle_name = ' Turnbull';\nvar second_name = ' Cooper';\nconsole.log(name_string.concat(middle_name, surname));\n<\/pre><\/div>\n\n\n\n<p>Our code returns: <em>\u201cLucy Turnbull Cooper\u201d.<\/em> It\u2019s important to note that we included spaces at the start of the <em>\u201cmiddle_name\u201d<\/em> and <em>\u201csecond_name\u201d<\/em> strings. This ensures that our end string was separated by spaces.<\/p>\n\n\n\n<p>In addition, you can also use the concat() function to combine more than two strings. Here\u2019s an example of concat() being used to combine three strings together:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>var good_morning = 'Good';\nconsole.log(good_morning.concat(' Morning', 'Alex!', ' It is a great day!'));\n<\/pre><\/div>\n\n\n\n<p>Our code returns a new string: <em>\u201cGood Morning, Alex! It is a great day!\u201d<\/em><\/p>\n\n\n\n<p>The JavaScript concat() string function does not alter our original string. Instead, it creates a new string with our concatenated values. So, if we wanted to store our new string for later use, we would need to assign it to a variable like so:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>var good_morning = 'Good';\nvar new_string = good_morning.concat(' Morning', 'Alex!', ' It is a great day!')\nconsole.log(new_string);\n<\/pre><\/div>\n\n\n\n<p>Our code returns the same as above, but now our new string is stored within the variable <em>\u201cnew_string.\u201d<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The JavaScript concatenation operator is a plus sign (+). This operator lets you add the contents of two or more strings together to create one larger string. You can also use the concat() method to merge strings.<\/p>\n\n\n\n<p>Both of these methods can be used interchangeably. This means that neither one offers any special methods. Both the plus sign and the concat() method merge strings to create a new string.<\/p>\n\n\n\n<p>Are you interested in learning more about JavaScript coding? Check out our complete <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-javascript\/\">How to Learn JavaScript guide<\/a>. You&#8217;ll find expert tips for learning how to code and plenty of learning resources to help you master the JavaScript language.<\/p>\n","protected":false},"excerpt":{"rendered":"The JavaScript concat() method merges the contents of two or more strings. You can also use the + concatenation operator to merge multiple strings. The concatenation operator is preferred in most cases as it is more concise. Concatenation is a technique used in programming to merge two or more strings into one value. For example,&hellip;","protected":false},"author":240,"featured_media":11974,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[11933],"tags":[],"class_list":{"0":"post-12689","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-javascript"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"JavaScript","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"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>JavaScript Concatenate Strings: A Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The JavaScript concat string method is used by programmers to merge two strings into one value. Learn about how the concat method works and how to use it in your JavaScript code on Career Karma.\" \/>\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\/javascript-concat-string\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript Concatenate Strings: A Guide\" \/>\n<meta property=\"og:description\" content=\"The JavaScript concat string method is used by programmers to merge two strings into one value. Learn about how the concat method works and how to use it in your JavaScript code on Career Karma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/\" \/>\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-12-20T23:16:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:06:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/working-woman-person-technology-7375.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"714\" \/>\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\/javascript-concat-string\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"JavaScript Concatenate Strings: A Guide\",\"datePublished\":\"2020-12-20T23:16:55+00:00\",\"dateModified\":\"2023-12-01T12:06:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/\"},\"wordCount\":714,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/working-woman-person-technology-7375.jpg\",\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/\",\"name\":\"JavaScript Concatenate Strings: A Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/working-woman-person-technology-7375.jpg\",\"datePublished\":\"2020-12-20T23:16:55+00:00\",\"dateModified\":\"2023-12-01T12:06:17+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The JavaScript concat string method is used by programmers to merge two strings into one value. Learn about how the concat method works and how to use it in your JavaScript code on Career Karma.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/working-woman-person-technology-7375.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/working-woman-person-technology-7375.jpg\",\"width\":1000,\"height\":714},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\/\/careerkarma.com\/blog\/javascript\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"JavaScript Concatenate Strings: A Guide\"}]},{\"@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":"JavaScript Concatenate Strings: A Guide | Career Karma","description":"The JavaScript concat string method is used by programmers to merge two strings into one value. Learn about how the concat method works and how to use it in your JavaScript code on Career Karma.","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\/javascript-concat-string\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript Concatenate Strings: A Guide","og_description":"The JavaScript concat string method is used by programmers to merge two strings into one value. Learn about how the concat method works and how to use it in your JavaScript code on Career Karma.","og_url":"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-20T23:16:55+00:00","article_modified_time":"2023-12-01T12:06:17+00:00","og_image":[{"width":1000,"height":714,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/working-woman-person-technology-7375.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\/javascript-concat-string\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"JavaScript Concatenate Strings: A Guide","datePublished":"2020-12-20T23:16:55+00:00","dateModified":"2023-12-01T12:06:17+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/"},"wordCount":714,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/working-woman-person-technology-7375.jpg","articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/","url":"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/","name":"JavaScript Concatenate Strings: A Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/working-woman-person-technology-7375.jpg","datePublished":"2020-12-20T23:16:55+00:00","dateModified":"2023-12-01T12:06:17+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The JavaScript concat string method is used by programmers to merge two strings into one value. Learn about how the concat method works and how to use it in your JavaScript code on Career Karma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/javascript-concat-string\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/working-woman-person-technology-7375.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/working-woman-person-technology-7375.jpg","width":1000,"height":714},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/javascript-concat-string\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"JavaScript","item":"https:\/\/careerkarma.com\/blog\/javascript\/"},{"@type":"ListItem","position":3,"name":"JavaScript Concatenate Strings: A Guide"}]},{"@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\/12689","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=12689"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12689\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/11974"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=12689"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=12689"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=12689"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}