{"id":24470,"date":"2022-01-31T10:57:47","date_gmt":"2022-01-31T05:27:47","guid":{"rendered":"https:\/\/tutorial.eyehunts.com\/?p=24470"},"modified":"2022-07-22T17:44:26","modified_gmt":"2022-07-22T12:14:26","slug":"do-while-javascript-loop-example","status":"publish","type":"post","link":"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/","title":{"rendered":"do while JavaScript | Loop example"},"content":{"rendered":"\n<p>The JavaScript do-while loop is a <strong>control flow statement<\/strong> that executes a block of code at least once, and then repeatedly executes the block until the <a href=\"https:\/\/tutorial.eyehunts.com\/js\/javascript-ternary-operator-without-else-condition-is-it-possible\/\">condition expression<\/a> is true.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>do {\n  \/\/code block to be executed\n}\nwhile (condition);<\/code><\/pre>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"example-do-while-javascript\"><strong>Example do while JavaScript<\/strong><\/h2>\n\n\n\n<p>A simple example code executes a code block once and then continues if condition (i &lt; 5) is true:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n&lt;head&gt;\n\n  &lt;script&gt;\n    let i = 0;\n    do {\n      console.log(i)\n      i++;\n    }\n    while (i &lt; 5); \n  &lt;\/script&gt;\n\n&lt;\/head&gt;\n&lt;body&gt;\n\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p><strong>Output<\/strong>:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"137\" height=\"135\" src=\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/01\/do-while-JavaScript.jpg?resize=137%2C135&#038;ssl=1\" alt=\"do while JavaScript\" class=\"wp-image-24489\"\/><\/figure><\/div>\n\n\n<p>Print Array using do-while<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  &lt;script&gt;\n    const cars = &#91;\"BMW\", \"Volvo\", \"Saab\", \"Ford\"];\n    let l = cars.length;\n    let i = 0;\n    do {\n      console.log(cars&#91;i])\n      i++;\n    }\n    while (i &lt; l); \n  &lt;\/script&gt;<\/code><\/pre>\n\n\n\n<p><strong>Output<\/strong>:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"137\" height=\"135\" src=\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/01\/do-while-JavaScript.jpg?resize=137%2C135&#038;ssl=1\" alt=\"Print Array using do-while\" class=\"wp-image-24489\"\/><\/figure><\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Do comment if you have any doubts or suggestions on this JS do-while loop.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p><strong>Note:<\/strong>&nbsp;The<strong>&nbsp;All JS Examples codes&nbsp;<\/strong>are&nbsp;tested on the Firefox browser and the Chrome browser.<\/p><p>OS:&nbsp;<strong>Windows 10<\/strong><\/p><p>Code: HTML 5 Version<\/p><\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>The JavaScript do-while loop is a control flow statement that executes a block of code at least once, and then repeatedly executes the block until the condition expression is true. Example do while JavaScript A simple example code executes a code block once and then continues if condition (i &lt; 5) is true: Output: Print&hellip;&nbsp;<a href=\"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/\" rel=\"bookmark\">Read More &raquo;<span class=\"screen-reader-text\">do while JavaScript | Loop example<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"","jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[69],"tags":[305,301],"post_series":[],"class_list":["post-24470","post","type-post","status-publish","format-standard","hentry","category-js","tag-js-do-while","tag-js-loop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>do while JavaScript | Loop example<\/title>\n<meta name=\"description\" content=\"The JavaScript do-while loop is a control flow statement that executes a block of code at least once, and then repeatedly executes the block\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"do while JavaScript | Loop example\" \/>\n<meta property=\"og:description\" content=\"The JavaScript do-while loop is a control flow statement that executes a block of code at least once, and then repeatedly executes the block\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-31T05:27:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-22T12:14:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/01\/do-while-JavaScript.jpg\" \/>\n<meta name=\"author\" content=\"Rohit\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rohit\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/\",\"url\":\"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/\",\"name\":\"do while JavaScript | Loop example\",\"isPartOf\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/01\/do-while-JavaScript.jpg\",\"datePublished\":\"2022-01-31T05:27:47+00:00\",\"dateModified\":\"2022-07-22T12:14:26+00:00\",\"author\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1\"},\"description\":\"The JavaScript do-while loop is a control flow statement that executes a block of code at least once, and then repeatedly executes the block\",\"breadcrumb\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/01\/do-while-JavaScript.jpg?fit=137%2C135&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/01\/do-while-JavaScript.jpg?fit=137%2C135&ssl=1\",\"width\":137,\"height\":135},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tutorial.eyehunts.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"do while JavaScript | Loop example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/#website\",\"url\":\"https:\/\/tutorial.eyehunts.com\/\",\"name\":\"Tutorial\",\"description\":\"By EyeHunts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tutorial.eyehunts.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1\",\"name\":\"Rohit\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971\",\"contentUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971\",\"caption\":\"Rohit\"},\"description\":\"Degree in Computer Science and Engineer: App Developer and has multiple Programming languages experience. Enthusiasm for technology &amp; like learning technical.\",\"url\":\"https:\/\/tutorial.eyehunts.com\/author\/rohit\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"do while JavaScript | Loop example","description":"The JavaScript do-while loop is a control flow statement that executes a block of code at least once, and then repeatedly executes the block","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:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/","og_locale":"en_US","og_type":"article","og_title":"do while JavaScript | Loop example","og_description":"The JavaScript do-while loop is a control flow statement that executes a block of code at least once, and then repeatedly executes the block","og_url":"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/","og_site_name":"Tutorial","article_published_time":"2022-01-31T05:27:47+00:00","article_modified_time":"2022-07-22T12:14:26+00:00","og_image":[{"url":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/01\/do-while-JavaScript.jpg","type":"","width":"","height":""}],"author":"Rohit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rohit","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/","url":"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/","name":"do while JavaScript | Loop example","isPartOf":{"@id":"https:\/\/tutorial.eyehunts.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/#primaryimage"},"image":{"@id":"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/#primaryimage"},"thumbnailUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/01\/do-while-JavaScript.jpg","datePublished":"2022-01-31T05:27:47+00:00","dateModified":"2022-07-22T12:14:26+00:00","author":{"@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1"},"description":"The JavaScript do-while loop is a control flow statement that executes a block of code at least once, and then repeatedly executes the block","breadcrumb":{"@id":"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/#primaryimage","url":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/01\/do-while-JavaScript.jpg?fit=137%2C135&ssl=1","contentUrl":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/01\/do-while-JavaScript.jpg?fit=137%2C135&ssl=1","width":137,"height":135},{"@type":"BreadcrumbList","@id":"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tutorial.eyehunts.com\/"},{"@type":"ListItem","position":2,"name":"do while JavaScript | Loop example"}]},{"@type":"WebSite","@id":"https:\/\/tutorial.eyehunts.com\/#website","url":"https:\/\/tutorial.eyehunts.com\/","name":"Tutorial","description":"By EyeHunts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tutorial.eyehunts.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1","name":"Rohit","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/image\/","url":"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971","contentUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/litespeed\/avatar\/2b27529b86d6dfb5336897e07c93a827.jpg?ver=1777374971","caption":"Rohit"},"description":"Degree in Computer Science and Engineer: App Developer and has multiple Programming languages experience. Enthusiasm for technology &amp; like learning technical.","url":"https:\/\/tutorial.eyehunts.com\/author\/rohit\/"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":24468,"url":"https:\/\/tutorial.eyehunts.com\/js\/while-loop-javascript-example-code\/","url_meta":{"origin":24470,"position":0},"title":"While loop JavaScript | Example code","author":"Rohit","date":"January 31, 2022","format":false,"excerpt":"A JavaScript while loop executes a block of code until a condition evaluates to true. Where the condition is evaluated before executing the statement. while (condition) { \/\/ code block to be executed } Example While loop JavaScript Simple example code executes a statement or code block repeatedly as long\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"While loop JavaScript","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/01\/While-loop-JavaScript.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":25824,"url":"https:\/\/tutorial.eyehunts.com\/js\/if-condition-in-javascript-basics\/","url_meta":{"origin":24470,"position":1},"title":"if condition in JavaScript | Basics","author":"Rohit","date":"July 21, 2022","format":false,"excerpt":"The JavaScript if condition statement executes a code block if a specified condition is true. If the condition is false, then a block of code will not be executed. if (expression) { \/\/Statement(s) to be executed if expression is true } Use if to specify a block of code to\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"if condition in JavaScript","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/07\/if-condition-in-JavaScript.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":25342,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-if-and-condition-example-code\/","url_meta":{"origin":24470,"position":2},"title":"JavaScript if and condition | Example code","author":"Rohit","date":"July 27, 2022","format":false,"excerpt":"Using the AND && in the if statement will evaluate 2 conditions, if both are true then only if the block code executes. The && the operator is only true if both the left and right sides of the && are true. JavaScript if and Simple example code use AND\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"JavaScript if and condition","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/07\/JavaScript-if-and-condition.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":9315,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-array-loop-ways-of-iterating-over-an-array\/","url_meta":{"origin":24470,"position":3},"title":"JavaScript array loop | Ways of iterating over an array","author":"Rohit","date":"July 22, 2020","format":false,"excerpt":"JavaScript array supports almost all loop statements. Using Loops you can iterate over an array. This means do something repeatedly or execute a block of code a number of times. Loops are very useful you can run the same code over and over again, each time with a different value.\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2020\/07\/Examples-of-JavaScript-array-loops-1.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":25821,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-if-else-statement-basic-code\/","url_meta":{"origin":24470,"position":4},"title":"JavaScript if else statement | Basic code","author":"Rohit","date":"May 5, 2022","format":false,"excerpt":"Using JavaScript if else statement you can make a decision-maker program. The if statement executes a statement if a specified condition is truthy. If the condition is falsy, else block code will execute. if (condition) { statement1 } else { statement2 } The else statement to specify a code block\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"JavaScript if else statement ","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/05\/JavaScript-if-else-statement-.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":10985,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-iterate-array-5-ways-example-codes\/","url_meta":{"origin":24470,"position":5},"title":"JavaScript iterate Array | 5 Ways example codes","author":"Rohit","date":"December 31, 2020","format":false,"excerpt":"Iteration is the repetition of a process in order to generate an outcome. In JavaScript, you can iterate an array using for-loop, while-loop, foreach, every method, map, etc. for loopwhile loopforEach methodevery methodUsing map Examples of JavaScript iterate array Let's see HTML examples code:- 1. for loop The for loop\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"JavaScript iterate Array","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/\/wp-content\/uploads\/2020\/12\/JavaScript-iterate-Array.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/24470","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/comments?post=24470"}],"version-history":[{"count":1,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/24470\/revisions"}],"predecessor-version":[{"id":31739,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/24470\/revisions\/31739"}],"wp:attachment":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/media?parent=24470"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/categories?post=24470"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/tags?post=24470"},{"taxonomy":"post_series","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/post_series?post=24470"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}