{"id":12681,"date":"2020-12-01T15:16:00","date_gmt":"2020-12-01T23:16:00","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=12681"},"modified":"2023-12-01T04:05:07","modified_gmt":"2023-12-01T12:05:07","slug":"javascript-parseint","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/javascript-parseint\/","title":{"rendered":"JavaScript ParseInt: A Step-By-Step Guide"},"content":{"rendered":"\n<p><em>The JavaScript parseInt method reads a string or a float and converts it to an integer. This method is commonly used to prepare a string for a mathematical operation because strings cannot be treated like numbers in a math equation.<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>When you\u2019re working with data in JavaScript, you may want to convert a string into an integer. For example, say you want to ask a user to insert their age in a web form. You may want to convert the age they have entered into a number. This will let you check if the user is over the age of sixteen.<\/p>\n\n\n\n<p>That\u2019s where the JavaScript <em>parseInt()<\/em> function comes in. <em>ParseInt()<\/em> is a built-in method that can be used to convert a string into an integer.<\/p>\n\n\n\n<p>In this tutorial, we are going to explore the basics of the JavaScript <em>parseInt()<\/em> method. We\u2019ll discuss the syntax used with the <em>parseInt()<\/em> method. We&#8217;ll walk through an example to showcase how you can convert a string to a number in JavaScript.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">JavaScript parseInt()<\/h2>\n\n\n\n<p>JavaScript <em>parseInt()<\/em> converts a string or a floating-point number to an integer. It is commonly used to prepare data formatted as a string for a mathematical operation.<\/p>\n\n\n\n<p>Here\u2019s the syntax for the JavaScript <em>parseInt()<\/em> function:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>parseInt(string, radix);<\/pre><\/div>\n\n\n\n<p>The <em>parseInt()<\/em> method takes two parameters. The first one is the string you want to convert to an integer and is required.<\/p>\n\n\n\n<p>The second parameter, called the <em>\u201cradix,\u201d<\/em> is optional. It represents the radix in which your value appears that is required for your conversion. <\/p>\n\n\n\n<p>The radix argument is not as commonly used as the last one. In most cases, your numbers will be formatted in 10 decimal. The default radix is 10 decimal so you do not need to worry about this argument. <\/p>\n\n\n\n<p>You can include spaces at the start and end of a value that you want to convert to a number. But, spaces in the middle of a number are not allowed.<\/p>\n\n\n\n<p>If you try to parse a value that includes letters, you will receive a NaN value. The radix argument may let you include some letters, such as &#8220;x&#8221; in your number. This is only the case where the letter is relevant to how a number is formatted.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">parseInt() JavaScript Example<\/h2>\n\n\n\n<p>Let\u2019s use an example to illustrate how this works. Let\u2019s say that we have a string \u201c20202\u201d that we want to convert to an integer. We could do so using the following code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>console.log(parseInt(&quot;20202&quot;));<\/pre><\/div>\n\n\n\n<p>The parseInt() function parses a string and returns an integer as follows:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>20202<\/pre><\/div>\n\n\n\n<p>Let&#8217;s check the <a href=\"https:\/\/careerkarma.com\/blog\/javascript-console\/\">JavaScript console<\/a> to see the result of our code. Our program has returned a number instead of a string. We can tell our value is now a number because there are no quotation marks in the value.<\/p>\n\n\n\n<p>We assign a value to a JavaScript variable called &#8220;value&#8221;. Our value is a string, which is indicated by the quotation marks surrounding the value. Then, we use the parseInt() method to convert that value to an integer.<\/p>\n\n\n\n<p>Similarly, if we use the <em>\u201cradix\u201d<\/em> argument, we can convert our numbers to strings in different bases.<\/p>\n\n\n\n<p>The <em>\u201cradix\u201d<\/em> argument takes in a number between 2 and 36 and describes the numerical system the <em>parseInt()<\/em> function should use. Say we want to convert a <em>\u201c15\u201d<\/em> from hexadecimal that has a radix value of <em>\u201c16.&#8221; <\/em>We could do so using the following code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>console.log(parseInt('0xF', 16));<\/pre><\/div>\n\n\n\n<p>Our function returns: <code>15.<\/code><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Passing Invalid Values to parseInt()<\/h3>\n\n\n\n<p>In addition, if we pass a string that cannot be converted into a number, JavaScript will return <code>\u201cNaN,\u201d<\/code> which stands for Not a Number. Here\u2019s an example of using <code>parseInt()<\/code> to convert <code>\u201cHey\u201d<\/code> into a string:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>console.log(parseInt('Hey'));<\/pre><\/div>\n\n\n\n<p>Our number parseInt returns <code>\u201cNaN,\u201d <\/code>because the <code>\u201cHey\u201d<\/code> string characters cannot be converted into a number.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The JavaScript <em>parseInt()<\/em> method can be used to convert a string to an integer. This function is useful if you have a string of data that needs to be formatted as a number. For example, you may want a string to be a number so you can perform mathematical operations on that string.\n\n<\/p>\n\n\n\n<p>In this tutorial, we explored how to use the JavaScript <em>parseInt()<\/em> method and discussed a few examples of the method in action. We also analyzed how the <em>\u201cradix\u201d <\/em>parameter can be used with <em>parseInt()<\/em>.\n\n<\/p>\n\n\n\n<p>Now you have the information you need to start using the JavaScript <em>parseInt()<\/em> method like a pro! If you&#8217;re looking for more resources to help you learn JavaScript, check out our complete <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-javascript\/\">How to Learn JavaScript guide<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"The JavaScript parseInt method reads a string or a float and converts it to an integer. This method is commonly used to prepare a string for a mathematical operation because strings cannot be treated like numbers in a math equation. When you\u2019re working with data in JavaScript, you may want to convert a string into&hellip;","protected":false},"author":240,"featured_media":10878,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[11933],"tags":[],"class_list":{"0":"post-12681","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 ParseInt: A Step-By-Step Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The JavaScript parseInt method is used by programmers to convert a string to an integer. Learn about how the parseInt method works and how you can 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-parseint\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript ParseInt: A Step-By-Step Guide\" \/>\n<meta property=\"og:description\" content=\"The JavaScript parseInt method is used by programmers to convert a string to an integer. Learn about how the parseInt method works and how you can use it in your JavaScript code on Career Karma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/\" \/>\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-01T23:16:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:05:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/two-women-looking-at-the-code-at-laptop-1181263.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"668\" \/>\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-parseint\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"JavaScript ParseInt: A Step-By-Step Guide\",\"datePublished\":\"2020-12-01T23:16:00+00:00\",\"dateModified\":\"2023-12-01T12:05:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/\"},\"wordCount\":742,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/two-women-looking-at-the-code-at-laptop-1181263.jpg\",\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/\",\"name\":\"JavaScript ParseInt: A Step-By-Step Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/two-women-looking-at-the-code-at-laptop-1181263.jpg\",\"datePublished\":\"2020-12-01T23:16:00+00:00\",\"dateModified\":\"2023-12-01T12:05:07+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The JavaScript parseInt method is used by programmers to convert a string to an integer. Learn about how the parseInt method works and how you can use it in your JavaScript code on Career Karma.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/two-women-looking-at-the-code-at-laptop-1181263.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/two-women-looking-at-the-code-at-laptop-1181263.jpg\",\"width\":1000,\"height\":668},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#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 ParseInt: A Step-By-Step 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 ParseInt: A Step-By-Step Guide | Career Karma","description":"The JavaScript parseInt method is used by programmers to convert a string to an integer. Learn about how the parseInt method works and how you can 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-parseint\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript ParseInt: A Step-By-Step Guide","og_description":"The JavaScript parseInt method is used by programmers to convert a string to an integer. Learn about how the parseInt method works and how you can use it in your JavaScript code on Career Karma.","og_url":"https:\/\/careerkarma.com\/blog\/javascript-parseint\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-01T23:16:00+00:00","article_modified_time":"2023-12-01T12:05:07+00:00","og_image":[{"width":1000,"height":668,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/two-women-looking-at-the-code-at-laptop-1181263.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-parseint\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-parseint\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"JavaScript ParseInt: A Step-By-Step Guide","datePublished":"2020-12-01T23:16:00+00:00","dateModified":"2023-12-01T12:05:07+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-parseint\/"},"wordCount":742,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/two-women-looking-at-the-code-at-laptop-1181263.jpg","articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/javascript-parseint\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/javascript-parseint\/","url":"https:\/\/careerkarma.com\/blog\/javascript-parseint\/","name":"JavaScript ParseInt: A Step-By-Step Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/two-women-looking-at-the-code-at-laptop-1181263.jpg","datePublished":"2020-12-01T23:16:00+00:00","dateModified":"2023-12-01T12:05:07+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The JavaScript parseInt method is used by programmers to convert a string to an integer. Learn about how the parseInt method works and how you can use it in your JavaScript code on Career Karma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/javascript-parseint\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/two-women-looking-at-the-code-at-laptop-1181263.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/two-women-looking-at-the-code-at-laptop-1181263.jpg","width":1000,"height":668},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/javascript-parseint\/#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 ParseInt: A Step-By-Step 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\/12681","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=12681"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12681\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/10878"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=12681"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=12681"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=12681"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}