{"id":19775,"date":"2020-07-18T18:14:20","date_gmt":"2020-07-19T01:14:20","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=19775"},"modified":"2020-12-29T13:23:35","modified_gmt":"2020-12-29T21:23:35","slug":"javascript-char-at","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/","title":{"rendered":"JavaScript Methods: charAt() Method"},"content":{"rendered":"\n<p><em>There exists a String object method in JavaScript that gives us the ability to figure out which character is at a given index in a string. This article will tell you about that method and show how to use it.<\/em><br><\/p>\n\n\n\n<p>For this method, we turn to our primitive types in JavaScript. What are those types? What does primitive even mean?<br><\/p>\n\n\n\n<p>Primitive types, or values, are items that are not objects and don\u2019t have methods associated with them. In JavaScript, the primitives are string, number, boolean, bigint, symbols, and undefined. Today, we\u2019re going to focus on the string primitive value.&nbsp;<br><\/p>\n\n\n\n<p>What\u2019s interesting about the primitive string value is that it\u2019s usually interchangeable with the primitive String object. In most cases, JavaScript will automatically wrap a primitive String object wrapper around a primitive string and coerce the use of String methods. So, in most cases, you don\u2019t need to worry about changing a primitive string (with no methods available) to a primitive String Object (with methods available).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Syntax<\/h2>\n\n\n\n<p>The syntax for the String charAt() method is fairly straightforward. We start with the string we want to look at. Since it\u2019s a String Object, we use the dot notation to access the method and attach it to the end. To invoke it, we add parentheses to the end with the index we want to look up.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>const charAtFive  = new String(&quot;It is warm today.&quot;).charAt(5));<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<p>The <code>charAt()<\/code> method returns the character at that index in the string. Remember that strings are zero-based so indexes start at 0 and go from there in sequential order. Here is a working implementation \u2013 use the inputs to add a string and an index and then hit submit. Unless you\u2019ve asked for an index out of range, it should return a single character at the index you asked for.<br><br><br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;!DOCTYPE html&gt;\n &lt;head&gt;\n   &lt;meta charset=&quot;utf-8&quot;&gt;\n   &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width&quot;&gt;\n   &lt;title&gt;repl.it&lt;\/title&gt;\n   &lt;link href=&quot;style.css&quot; rel=&quot;stylesheet&quot; type=&quot;text\/css&quot; \/&gt;\n &lt;\/head&gt;\n &lt;body&gt;\n   &lt;form onsubmit=handleSubmit(event)&gt;\n     &lt;label for=&quot;to-fixed&quot;&gt;Enter a string:&lt;\/label&gt;\n     &lt;input id=&quot;to-fixed&quot; onchange=handleChange(event) type=&quot;text&quot; name=&quot;inputVal&quot; value=&quot;&quot;\/&gt;\n     &lt;label for=&quot;num-digits&quot;&gt;Enter an index:&lt;\/label&gt;\n     &lt;input id=&quot;num-digits&quot; onchange=handleChange(event) type=&quot;text&quot; name=&quot;numVal&quot; value=&quot;&quot;\/&gt;\n \n     &lt;input type=&quot;submit&quot; value=&quot;Submit&quot; \/&gt;\n   &lt;\/form&gt;\n \n   &lt;h3 id=&quot;root&quot;&gt;&lt;\/h3&gt;\n \n   &lt;script&gt;\n     let inputVal = '';\n     let numVal = '';\n     let errorVal = '';\n \n     const handleChange = e =&gt; {\n       if(e.target.name === &quot;inputVal&quot;) {\n         inputVal = e.target.value;\n       } else {\n         if(inputVal.length - 1 &lt; e.target.value || e.target.value &lt; 0) {\n           errorVal = &quot;Must enter index less than length of string and greater or equal to 0&quot;\n         } else {\n           errorVal = &quot;&quot;;\n           numVal = e.target.value;\n         }\n       }\n     }\n     const handleSubmit = e =&gt; {\n       e.preventDefault();\n       console.log(e)\n       const root = document.querySelector(&quot;#root&quot;);\n       if(errorVal) {\n         root.innerHTML = errorVal;\n       } else {\n         root.innerHTML = new String(inputVal).charAt(Number(numVal));\n         console.log(new String(inputVal).charAt(Number(numVal)));\n       }\n \n     }\n     const inputValue = document.getElementById(&quot;to-fixed&quot;).value\n   &lt;\/script&gt;\n &lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<p><strong>What Should You Take A Look At Next?&nbsp;<\/strong><br><\/p>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/javascript-reverse-string\/\"><strong>JavaScript Reverse String Code Challenge<\/strong><\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/javascript-pop\/\"><strong>JavaScript Pop Method: What is It and How to Use It<\/strong><\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/how-to-use-substring-in-javascript\/\"><strong>How to Use Substring in JavaScript<\/strong><\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/javascript-string-contains\/\"><strong>JavaScript String Contains: Step-By-Step Guide<\/strong><\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/javascript-touppercase-tolowercase\/\"><strong>JavaScript toUpperCase and toLowerCase<\/strong><\/a><br><\/p>\n","protected":false},"excerpt":{"rendered":"There exists a String object method in JavaScript that gives us the ability to figure out which character is at a given index in a string. This article will tell you about that method and show how to use it. For this method, we turn to our primitive types in JavaScript. What are those types?&hellip;","protected":false},"author":77,"featured_media":19776,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[11933],"tags":[],"class_list":{"0":"post-19775","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.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>JavaScript Methods: charAt() Method | Career Karma<\/title>\n<meta name=\"description\" content=\"There are times when you need to know what character is at a particular index. Enter: charAt(), a JavaScript String method for doing just that.\" \/>\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-char-at\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript Methods: charAt() Method\" \/>\n<meta property=\"og:description\" content=\"There are times when you need to know what character is at a particular index. Enter: charAt(), a JavaScript String method for doing just that.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/javascript-char-at\/\" \/>\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-07-19T01:14:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-29T21:23:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/CHAR.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Christina Kopecky\" \/>\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=\"Christina Kopecky\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/\"},\"author\":{\"name\":\"Christina Kopecky\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\"},\"headline\":\"JavaScript Methods: charAt() Method\",\"datePublished\":\"2020-07-19T01:14:20+00:00\",\"dateModified\":\"2020-12-29T21:23:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/\"},\"wordCount\":342,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/CHAR.jpg\",\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/\",\"name\":\"JavaScript Methods: charAt() Method | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/CHAR.jpg\",\"datePublished\":\"2020-07-19T01:14:20+00:00\",\"dateModified\":\"2020-12-29T21:23:35+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\"},\"description\":\"There are times when you need to know what character is at a particular index. Enter: charAt(), a JavaScript String method for doing just that.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/CHAR.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/CHAR.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript-char-at\\\/#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 Methods: charAt() Method\"}]},{\"@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\\\/ae0cdc4a5d198690d78482646894074e\",\"name\":\"Christina Kopecky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"caption\":\"Christina Kopecky\"},\"description\":\"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.\",\"sameAs\":[\"http:\\\/\\\/www.linkedin.com\\\/in\\\/cmvnk\"],\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/christina-kopecky\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"JavaScript Methods: charAt() Method | Career Karma","description":"There are times when you need to know what character is at a particular index. Enter: charAt(), a JavaScript String method for doing just that.","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-char-at\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript Methods: charAt() Method","og_description":"There are times when you need to know what character is at a particular index. Enter: charAt(), a JavaScript String method for doing just that.","og_url":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-07-19T01:14:20+00:00","article_modified_time":"2020-12-29T21:23:35+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/CHAR.jpg","type":"image\/jpeg"}],"author":"Christina Kopecky","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Christina Kopecky","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/"},"author":{"name":"Christina Kopecky","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"headline":"JavaScript Methods: charAt() Method","datePublished":"2020-07-19T01:14:20+00:00","dateModified":"2020-12-29T21:23:35+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/"},"wordCount":342,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/CHAR.jpg","articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/javascript-char-at\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/","url":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/","name":"JavaScript Methods: charAt() Method | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/CHAR.jpg","datePublished":"2020-07-19T01:14:20+00:00","dateModified":"2020-12-29T21:23:35+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"description":"There are times when you need to know what character is at a particular index. Enter: charAt(), a JavaScript String method for doing just that.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/javascript-char-at\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/CHAR.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/CHAR.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/javascript-char-at\/#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 Methods: charAt() Method"}]},{"@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\/ae0cdc4a5d198690d78482646894074e","name":"Christina Kopecky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","caption":"Christina Kopecky"},"description":"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.","sameAs":["http:\/\/www.linkedin.com\/in\/cmvnk"],"url":"https:\/\/careerkarma.com\/blog\/author\/christina-kopecky\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19775","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\/77"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=19775"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19775\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/19776"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=19775"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=19775"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=19775"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}