{"id":37128,"date":"2023-03-21T10:36:36","date_gmt":"2023-03-21T05:06:36","guid":{"rendered":"https:\/\/tutorial.eyehunts.com\/?p=37128"},"modified":"2023-03-21T10:36:37","modified_gmt":"2023-03-21T05:06:37","slug":"javascript-conditional-statement","status":"publish","type":"post","link":"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/","title":{"rendered":"JavaScript conditional statement"},"content":{"rendered":"\n<p><strong>JavaScript conditional statements<\/strong> allow you to make decisions in your code based on whether a certain condition is true or false. The two most commonly used conditional statements in JavaScript are <a href=\"https:\/\/tutorial.eyehunts.com\/js\/javascript-if-else-example-programs\/\"><code>if<\/code> <\/a>and <code><a href=\"https:\/\/tutorial.eyehunts.com\/js\/javascript-if-else-example-programs\/\">else<\/a><\/code>.<\/p>\n\n\n\n<p><strong>Using an <code>if<\/code> statement in JavaScript: <\/strong><\/p>\n\n\n\n<p>The curly braces code will only be executed if the condition <code>x > 5<\/code> is true.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>let x = 10;\r\n\r\nif (x > 5) {\r\n  console.log(\"x is greater than 5\");\r\n}\r<\/code><\/pre>\n\n\n\n<p><strong>Use an <code>else<\/code> statement to specify what should happen if the condition is false:<\/strong><\/p>\n\n\n\n<p>Since the condition <code>x > 5<\/code> is false, the code inside the <code>else<\/code> block will be executed instead.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>let x = 8;\r\n\r\nif (x > 10) {\r\n  console.log(\"x is greater than 10\");\r\n} else if (x > 5) {\r\n  console.log(\"x is greater than 5 but less than or equal to 10\");\r\n} else {\r\n  console.log(\"x is less than or equal to 5\");\r\n}\r\n<\/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\"><strong>JavaScript conditional statement example<\/strong><\/h2>\n\n\n\n<p>Simple example code of JavaScript Conditional Statement using If-Else Statement.<\/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 number = -5;\r\n\r\n    if (number > 0) {\r\n        console.log(\"The number is positive\");\r\n    } else if (number &lt; 0) {\r\n        console.log(\"The number is negative\");\r\n    } else {\r\n        console.log(\"The number is zero\");\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=\"276\" height=\"140\" src=\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-conditional-statement.jpg?resize=276%2C140&#038;ssl=1\" alt=\"JavaScript conditional statement\" class=\"wp-image-37176\"\/><\/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 basic 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 conditional statements allow you to make decisions in your code based on whether a certain condition is true or false. The two most commonly used conditional statements in JavaScript are if and else. Using an if statement in JavaScript: The curly braces code will only be executed if the condition x > 5 is&hellip;&nbsp;<a href=\"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/\" rel=\"bookmark\">Read More &raquo;<span class=\"screen-reader-text\">JavaScript conditional statement<\/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":[581,580],"post_series":[],"class_list":["post-37128","post","type-post","status-publish","format-standard","hentry","category-js","tag-conditional-statement","tag-js-statement"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>JavaScript conditional statement<\/title>\n<meta name=\"description\" content=\"JavaScript conditional statements allow you to make decisions in your code based on whether a certain condition is true or false...\" \/>\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-conditional-statement\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript conditional statement\" \/>\n<meta property=\"og:description\" content=\"JavaScript conditional statements allow you to make decisions in your code based on whether a certain condition is true or false...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-21T05:06:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-21T05:06:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-conditional-statement.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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/\",\"url\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/\",\"name\":\"JavaScript conditional statement\",\"isPartOf\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-conditional-statement.jpg\",\"datePublished\":\"2023-03-21T05:06:36+00:00\",\"dateModified\":\"2023-03-21T05:06:37+00:00\",\"author\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1\"},\"description\":\"JavaScript conditional statements allow you to make decisions in your code based on whether a certain condition is true or false...\",\"breadcrumb\":{\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-conditional-statement.jpg?fit=276%2C140&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-conditional-statement.jpg?fit=276%2C140&ssl=1\",\"width\":276,\"height\":140},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tutorial.eyehunts.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript conditional statement\"}]},{\"@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 conditional statement","description":"JavaScript conditional statements allow you to make decisions in your code based on whether a certain condition is true or false...","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-conditional-statement\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript conditional statement","og_description":"JavaScript conditional statements allow you to make decisions in your code based on whether a certain condition is true or false...","og_url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/","og_site_name":"Tutorial","article_published_time":"2023-03-21T05:06:36+00:00","article_modified_time":"2023-03-21T05:06:37+00:00","og_image":[{"url":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-conditional-statement.jpg","type":"","width":"","height":""}],"author":"Rohit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rohit","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/","url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/","name":"JavaScript conditional statement","isPartOf":{"@id":"https:\/\/tutorial.eyehunts.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/#primaryimage"},"image":{"@id":"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/#primaryimage"},"thumbnailUrl":"https:\/\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-conditional-statement.jpg","datePublished":"2023-03-21T05:06:36+00:00","dateModified":"2023-03-21T05:06:37+00:00","author":{"@id":"https:\/\/tutorial.eyehunts.com\/#\/schema\/person\/69ca2cb8c13fdce0ee5b39d6175119b1"},"description":"JavaScript conditional statements allow you to make decisions in your code based on whether a certain condition is true or false...","breadcrumb":{"@id":"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/#primaryimage","url":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-conditional-statement.jpg?fit=276%2C140&ssl=1","contentUrl":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/03\/JavaScript-conditional-statement.jpg?fit=276%2C140&ssl=1","width":276,"height":140},{"@type":"BreadcrumbList","@id":"https:\/\/tutorial.eyehunts.com\/js\/javascript-conditional-statement\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tutorial.eyehunts.com\/"},{"@type":"ListItem","position":2,"name":"JavaScript conditional statement"}]},{"@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":25829,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-if-then\/","url_meta":{"origin":37128,"position":0},"title":"JavaScript if then","author":"Rohit","date":"June 15, 2023","format":false,"excerpt":"The JavaScript \"if-then\" terminology is commonly used to describe the basic structure of the if statement, emphasizing that the code following the if condition is executed if the condition is true. The term \"JavaScript if then\" is not a specific construct in JavaScript. However, \"if-then\" is a common way to\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"conditional ","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2023\/06\/JavaScript-if-then-1.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":25451,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-if-statement-basic-code\/","url_meta":{"origin":37128,"position":1},"title":"JavaScript if statement | Basic code","author":"Rohit","date":"March 15, 2022","format":false,"excerpt":"JavaScript if statement is used to specify a block of code to be executed if a specified condition is true. Where The if keyword should be in lowercase letters. if (condition) { \/\/ block of code } JavaScript if statement Simple example code block of JavaScript code to be executed\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"JavaScript if statement","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/03\/JavaScript-if-statement.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":25827,"url":"https:\/\/tutorial.eyehunts.com\/js\/if-else-if-javascript-basic-code\/","url_meta":{"origin":37128,"position":2},"title":"if else if JavaScript | Basic code","author":"Rohit","date":"May 5, 2022","format":false,"excerpt":"Use the if else if statement if you want to check 2 conditions in JavaScript. Use if to specify a block of code to be executed, if a specified condition is true. And Use else if to specify a new condition to test, if the first condition is false if\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"if else if JavaScript","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/05\/if-else-if-JavaScript.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":29129,"url":"https:\/\/tutorial.eyehunts.com\/js\/how-to-write-an-if-statement-in-javascript-if-i5-example-code\/","url_meta":{"origin":37128,"position":3},"title":"How to write an if statement in JavaScript if i=5 | Example code","author":"Rohit","date":"May 6, 2022","format":false,"excerpt":"JavaScript if Conditional statements are used to decide the flow of execution based on conditions. If a condition is true, you can perform one action and if the condition is false, you can perform another action. if (condition){ \/\/lines of code to be executed if condition is true } How\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"How to write an if statement in JavaScript if i 5","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/05\/How-to-write-an-if-statement-in-JavaScript-if-i-5.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":25566,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-if-else-exercises-solution-code\/","url_meta":{"origin":37128,"position":4},"title":"JavaScript if else exercises | Solution Code","author":"Rohit","date":"March 15, 2022","format":false,"excerpt":"We will cover the most frequently questions used by JavaScript (web app) developers. These codes are mostly used in JavaScript if else condition statements. Just do this if-else exercises program practice for better hand on JavaScript code. The conditional statement checks certain conditions and then based on the truth value\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"JavaScript if else exercises","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/03\/JavaScript-if-else-exercises.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":25340,"url":"https:\/\/tutorial.eyehunts.com\/js\/javascript-if-else-shorthand-example-code\/","url_meta":{"origin":37128,"position":5},"title":"JavaScript if else shorthand | Example code","author":"Rohit","date":"March 7, 2022","format":false,"excerpt":"You can use the ternary operator as an if-else shorthand in JavaScript. It lets us write shorthand if..else statements exactly as we want. Syntax condition ? exprIfTrue : exprIfFalse Using var hasName = (name === 'john') ? 'Y' :'N'; It looks like this: (name === 'john') - our condition ?\u2026","rel":"","context":"In &quot;JavaScript&quot;","block_context":{"text":"JavaScript","link":"https:\/\/tutorial.eyehunts.com\/category\/js\/"},"img":{"alt_text":"JavaScript if else shorthand","src":"https:\/\/i0.wp.com\/tutorial.eyehunts.com\/wp-content\/uploads\/2022\/03\/JavaScript-if-else-shorthand.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\/37128","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=37128"}],"version-history":[{"count":1,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/37128\/revisions"}],"predecessor-version":[{"id":37177,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/posts\/37128\/revisions\/37177"}],"wp:attachment":[{"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/media?parent=37128"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/categories?post=37128"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/tags?post=37128"},{"taxonomy":"post_series","embeddable":true,"href":"https:\/\/tutorial.eyehunts.com\/wp-json\/wp\/v2\/post_series?post=37128"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}