{"id":26057,"date":"2023-03-21T10:49:09","date_gmt":"2023-03-21T05:19:09","guid":{"rendered":"https:\/\/tutorial.eyehunts.com\/?p=26057"},"modified":"2023-03-21T10:49:10","modified_gmt":"2023-03-21T05:19:10","slug":"javascript-iteration","status":"publish","type":"post","link":"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/","title":{"rendered":"JavaScript iteration"},"content":{"rendered":"\n<p>JavaScript iteration refers to the process of repeating a set of instructions multiple times. In JavaScript, there are several ways you can do iteration on the sequence data structure using <a href=\"https:\/\/tutorial.eyehunts.com\/js\/javascript-for-loop-increment-final-expression\/\"><code>for<\/code> <\/a>loops, <a href=\"https:\/\/tutorial.eyehunts.com\/js\/how-does-a-while-loop-start-in-javascript-code\/\"><code>while<\/code> <\/a>loops, and <a href=\"https:\/\/tutorial.eyehunts.com\/js\/do-while-javascript-loop-example\/\"><code>do-while<\/code> <\/a>loops.<\/p>\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\"><strong>JavaScript iteration example<\/strong><\/h2>\n\n\n\n<p>Simple example code iterate through an array of numbers and print each one to the <a href=\"https:\/\/tutorial.eyehunts.com\/js\/javascript-console-log-variable-example-code\/\">console<\/a>. <\/p>\n\n\n\n<p><strong><strong>For-in loop:<\/strong><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\r\n&lt;html>\r\n&lt;body>\r\n&lt;script>\r\n    let numbers = &#91;1, 2, 3, 4, 5];\r\n\r\n    for (let i = 0; i &lt; numbers.length; i++) {\r\n    console.log(i + \" index value->\", numbers&#91;i]);\r\n    }\r\n\r\n&lt;\/script>\r\n&lt;\/body>\r\n&lt;\/html><\/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=\"352\" height=\"217\" src=\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-iteration.jpg?resize=352%2C217&#038;ssl=1\" alt=\"JavaScript iteration\" class=\"wp-image-37181\"\/><\/figure><\/div>\n\n\n<p><strong>While loop:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>let i = 0;\r\n\r\nwhile (i &lt; 5) {\r\n  console.log(i);\r\n  i++;\r\n}<\/code><\/pre>\n\n\n\n<p><strong>Do-while loop:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>let i = 0;\r\n\r\ndo {\r\n  console.log(i);\r\n  i++;\r\n} while (i &lt; 5);\r<\/code><\/pre>\n\n\n\n<p>Use a <code>for-in<\/code> loop to iterate through the properties of an object called <code>person<\/code> and print their values to the console.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>let person = {\r\n  name: \"John\",\r\n  age: 30,\r\n  occupation: \"Engineer\"\r\n};\r\n\r\nfor (let key in person) {\r\n  console.log(key + \": \" + person&#91;key]);\r\n}<\/code><\/pre>\n\n\n\n<p><strong>Output:<\/strong><\/p>\n\n\n\n<p>name: John<br>age: 30<br>occupation: Engineer<\/p>\n\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 topic.<\/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>JavaScript iteration refers to the process of repeating a set of instructions multiple times. In JavaScript, there are several ways you can do iteration on the sequence data structure using for loops, while loops, and do-while loops. JavaScript iteration example Simple example code iterate through an array of numbers and print each one to the&hellip;&nbsp;<a href=\"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/\" rel=\"bookmark\">Read More &raquo;<span class=\"screen-reader-text\">JavaScript iteration<\/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":[582],"post_series":[],"class_list":["post-26057","post","type-post","status-publish","format-standard","hentry","category-js","tag-js-iteration"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>JavaScript iteration<\/title>\n<meta name=\"description\" content=\"JavaScript iteration refers to the process of repeating a set of instructions multiple times. In JavaScript, there are several ways you can..\" \/>\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\/javascript-iteration\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript iteration\" \/>\n<meta property=\"og:description\" content=\"JavaScript iteration refers to the process of repeating a set of instructions multiple times. In JavaScript, there are several ways you can..\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-21T05:19:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-21T05:19:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-iteration.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\/javascript-iteration\/\",\"url\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/\",\"name\":\"JavaScript iteration\",\"isPartOf\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-iteration.jpg\",\"datePublished\":\"2023-03-21T05:19:09+00:00\",\"dateModified\":\"2023-03-21T05:19:10+00:00\",\"author\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1\"},\"description\":\"JavaScript iteration refers to the process of repeating a set of instructions multiple times. In JavaScript, there are several ways you can..\",\"breadcrumb\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-iteration.jpg?fit=352%2C217&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-iteration.jpg?fit=352%2C217&ssl=1\",\"width\":352,\"height\":217},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tutorial.eyehunts.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript iteration\"}]},{\"@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":"JavaScript iteration","description":"JavaScript iteration refers to the process of repeating a set of instructions multiple times. In JavaScript, there are several ways you can..","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\/javascript-iteration\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript iteration","og_description":"JavaScript iteration refers to the process of repeating a set of instructions multiple times. In JavaScript, there are several ways you can..","og_url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/","og_site_name":"Tutorial","article_published_time":"2023-03-21T05:19:09+00:00","article_modified_time":"2023-03-21T05:19:10+00:00","og_image":[{"url":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-iteration.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\/javascript-iteration\/","url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/","name":"JavaScript iteration","isPartOf":{"@id":"https:\/\/tutorial.eyehunts.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/#primaryimage"},"image":{"@id":"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/#primaryimage"},"thumbnailUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-iteration.jpg","datePublished":"2023-03-21T05:19:09+00:00","dateModified":"2023-03-21T05:19:10+00:00","author":{"@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1"},"description":"JavaScript iteration refers to the process of repeating a set of instructions multiple times. In JavaScript, there are several ways you can..","breadcrumb":{"@id":"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/#primaryimage","url":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-iteration.jpg?fit=352%2C217&ssl=1","contentUrl":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-iteration.jpg?fit=352%2C217&ssl=1","width":352,"height":217},{"@type":"BreadcrumbList","@id":"https:\/\/tutorial.eyehunts.com\/js\/javascript-iteration\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tutorial.eyehunts.com\/"},{"@type":"ListItem","position":2,"name":"JavaScript iteration"}]},{"@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":37184,"url":"https:\/\/tutorial.eyehunts.com\/js\/for-in-array-javascript\/","url_meta":{"origin":26057,"position":0},"title":"For in array JavaScript","author":"Rohit","date":"March 21, 2023","format":false,"excerpt":"The For in array is used to check if a specified property or key exists in an object or an array in JavaScript. When used with an array, the in operator checks whether a specified index exists in the array. If the index exists, the operator returns true, otherwise, it\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"For in array JavaScript","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/For-in-array-JavaScript.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":10427,"url":"https:\/\/tutorial.eyehunts.com\/js\/why-dont-use-forin-for-array-iteration-javascript\/","url_meta":{"origin":26057,"position":1},"title":"Why is using \u201cfor\u2026in\u201d for array iteration a bad idea in JavaScript?","author":"Rohit","date":"November 16, 2020","format":false,"excerpt":"The purpose of the for-in statement is to enumerate over object properties. This statement will go up in the prototype chain, also enumerating over inherited properties, a thing that sometimes is not desired. There are three reasons why you shouldn't use for..in to iterate over array elements: for..in will loop\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"using for in for array iteration a bad idea","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/\/wp-content\/uploads\/2020\/11\/using-for-in-for-array-iteration-a-bad-idea.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/\/wp-content\/uploads\/2020\/11\/using-for-in-for-array-iteration-a-bad-idea.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/tutorial.eyehunts.com\/\/wp-content\/uploads\/2020\/11\/using-for-in-for-array-iteration-a-bad-idea.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]},{"id":24444,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-foreach-continue-example-code\/","url_meta":{"origin":26057,"position":2},"title":"JavaScript forEach continue | Example code","author":"Rohit","date":"February 1, 2022","format":false,"excerpt":"JavaScript forEach() is a function rather than a loop, if we use the continue statement then it throws errors. You can simply return if you want to skip the current iteration. Note: Use for\/of loops to iterate through an array unless you have a good reason not to. However, if\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"JavaScript forEach continue","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/02\/JavaScript-forEach-continue.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":9820,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-loop-through-array-example-code\/","url_meta":{"origin":26057,"position":3},"title":"JavaScript loop through Array | Example code","author":"Rohit","date":"September 16, 2020","format":false,"excerpt":"JavaScript loop through Array means a execute a block of code a number of times using a loops statement. It's also called Array iteration (repeating steps). Here are several options: Sequential for loopArray.prototype.forEachES6 for-of statement Example of JavaScript loop through Array Let's see one by one every method examples: 1.\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"JavaScript loop through Array for loop\n","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/\/wp-content\/uploads\/2020\/09\/JavaScript-loop-through-Array-for-loop.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":40424,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-while-loop-with-delay\/","url_meta":{"origin":26057,"position":4},"title":"JavaScript while loop with delay","author":"Rohit","date":"June 23, 2023","format":false,"excerpt":"In JavaScript, you can create a while loop with a delay using the setTimeout() function. The setTimeout() function allows you to execute a piece of code after a specified delay in milliseconds. Note: the use of setTimeout() introduces an asynchronous behavior, allowing other code execution to continue while waiting for\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\/2023\/06\/countdown-timer-in-JavaScript.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":40419,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-infinite-loop-with-delay\/","url_meta":{"origin":26057,"position":5},"title":"JavaScript infinite loop with delay","author":"Rohit","date":"June 23, 2023","format":false,"excerpt":"In JavaScript, you can create an infinite loop with a delay using the setTimeout or setInterval functions. These functions allow you to execute a piece of code repeatedly with a specified delay between each iteration. JavaScript infinite loop with delay example Here's an example of an infinite loop with a\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"JavaScript infinite loop with delay","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/06\/JavaScript-infinite-loop-with-delay.jpg?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\/26057","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=26057"}],"version-history":[{"count":1,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/26057\/revisions"}],"predecessor-version":[{"id":37183,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/26057\/revisions\/37183"}],"wp:attachment":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/media?parent=26057"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/categories?post=26057"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/tags?post=26057"},{"taxonomy":"post_series","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/post_series?post=26057"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}