{"id":1217,"date":"2023-03-13T16:58:04","date_gmt":"2023-03-13T15:58:04","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=1217"},"modified":"2023-03-20T12:22:03","modified_gmt":"2023-03-20T11:22:03","slug":"write-a-javascript-program-that-prints-out-odd-numbers-from-1-10","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/","title":{"rendered":"Write a JavaScript Program That Prints Out Odd Numbers From 1 &#8211; 10"},"content":{"rendered":"\n<p>Question: write a JavaScript Program That Prints Out Odd Numbers From 1 &#8211; 10<\/p>\n\n\n\n<p>Odd numbers are integers that cannot be divided evenly by 2. In other words, if you divide an odd number by 2, you will get a fraction or decimal as a result, rather than a whole number.<\/p>\n\n\n\n<p>For example, 3, 5, 7, 9, 11, and so on, are all odd numbers because they cannot be divided evenly by 2. In contrast, even numbers can be divided evenly by 2 and have a remainder of 0. <\/p>\n\n\n\n<p>For example, 2, 4, 6, 8, 10, and so on, are all even numbers because they can be divided evenly by 2. Knowing the difference between odd and even numbers is useful in <a href=\"https:\/\/codeflarelimited.com\" target=\"_blank\" rel=\"noreferrer noopener\">programming<\/a> and other software development logic implementations, particularly when you need to perform calculations or operations that depend on the parity of numbers.<\/p>\n\n\n\n<p>With that said let&#8217;s write a JavaScript program that prints out numbers from 1 &#8211; 10<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">for(let i = 1; i&lt;=10; i++){\n if(i%2 !== 0){\n   console.warn(i);\n }\n}<\/code><\/pre>\n\n\n\n<p>This program uses a <code>for<\/code> loop to iterate through the numbers 1 to 10. The <code>if<\/code> statement inside the loop checks if the current number is odd (i.e., not divisible by 2), and if it is, it prints it to the console using <code>console.log()<\/code>. You can adjust the loop range as needed to print out odd numbers within a different range.<\/p>\n\n\n\n<p>You can also modify this program to take user input for the range of numbers to check, like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">let start = prompt(\"Enter starting number:\");\nlet end = prompt(\"Enter ending number:\");\n\nfor (let i = start; i &lt;= end; i++) {\n  if (i % 2 !== 0) {\n    console.log(i);\n  }\n}<\/code><\/pre>\n\n\n\n<p>This program prompts the user to enter a starting and ending number for the range of numbers to check. The <code>for<\/code> loop iterates through this range, and the <code>if<\/code> statement inside checks for odd numbers and prints them to the console. <\/p>\n\n\n\n<p>Note that the <code>prompt()<\/code> function returns a string, so we need to convert the input to a number using <code>parseInt()<\/code> before using it in the loop.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><a href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.codefussion\" target=\"_blank\" rel=\"noreferrer noopener\">Start Learning Javascript<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Question: write a JavaScript Program That Prints Out Odd Numbers From 1 &#8211; 10 Odd numbers are integers<\/p>\n","protected":false},"author":1,"featured_media":1218,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[11,24,98,95],"tags":[],"class_list":["post-1217","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript","category-programming","category-softare-development","category-software-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Write a JavaScript Program That Prints Out Odd Numbers From 1 - 10<\/title>\n<meta name=\"description\" content=\"Write a JavaScript Program That Prints Out Odd Numbers From 1 - 10. Odd numbers are numbers which are not divisible by 2.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Write a JavaScript Program That Prints Out Odd Numbers From 1 - 10\" \/>\n<meta property=\"og:description\" content=\"Write a JavaScript Program That Prints Out Odd Numbers From 1 - 10. Odd numbers are numbers which are not divisible by 2.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-13T15:58:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-20T11:22:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Screenshot-2023-03-13-at-16.56.37.png\" \/>\n\t<meta property=\"og:image:width\" content=\"923\" \/>\n\t<meta property=\"og:image:height\" content=\"483\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"Write a JavaScript Program That Prints Out Odd Numbers From 1 &#8211; 10\",\"datePublished\":\"2023-03-13T15:58:04+00:00\",\"dateModified\":\"2023-03-20T11:22:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/\"},\"wordCount\":293,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Screenshot-2023-03-13-at-16.56.37.png\",\"articleSection\":[\"javascript\",\"programming\",\"softare development\",\"software development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/\",\"name\":\"Write a JavaScript Program That Prints Out Odd Numbers From 1 - 10\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Screenshot-2023-03-13-at-16.56.37.png\",\"datePublished\":\"2023-03-13T15:58:04+00:00\",\"dateModified\":\"2023-03-20T11:22:03+00:00\",\"description\":\"Write a JavaScript Program That Prints Out Odd Numbers From 1 - 10. Odd numbers are numbers which are not divisible by 2.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Screenshot-2023-03-13-at-16.56.37.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Screenshot-2023-03-13-at-16.56.37.png\",\"width\":923,\"height\":483,\"caption\":\"write a program that prints out odd numbers from 1 - 10\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"softare development\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/softare-development\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Write a JavaScript Program That Prints Out Odd Numbers From 1 &#8211; 10\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Write a JavaScript Program That Prints Out Odd Numbers From 1 - 10","description":"Write a JavaScript Program That Prints Out Odd Numbers From 1 - 10. Odd numbers are numbers which are not divisible by 2.","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:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/","og_locale":"en_US","og_type":"article","og_title":"Write a JavaScript Program That Prints Out Odd Numbers From 1 - 10","og_description":"Write a JavaScript Program That Prints Out Odd Numbers From 1 - 10. Odd numbers are numbers which are not divisible by 2.","og_url":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2023-03-13T15:58:04+00:00","article_modified_time":"2023-03-20T11:22:03+00:00","og_image":[{"width":923,"height":483,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Screenshot-2023-03-13-at-16.56.37.png","type":"image\/png"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"Write a JavaScript Program That Prints Out Odd Numbers From 1 &#8211; 10","datePublished":"2023-03-13T15:58:04+00:00","dateModified":"2023-03-20T11:22:03+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/"},"wordCount":293,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Screenshot-2023-03-13-at-16.56.37.png","articleSection":["javascript","programming","softare development","software development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/","url":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/","name":"Write a JavaScript Program That Prints Out Odd Numbers From 1 - 10","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Screenshot-2023-03-13-at-16.56.37.png","datePublished":"2023-03-13T15:58:04+00:00","dateModified":"2023-03-20T11:22:03+00:00","description":"Write a JavaScript Program That Prints Out Odd Numbers From 1 - 10. Odd numbers are numbers which are not divisible by 2.","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Screenshot-2023-03-13-at-16.56.37.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Screenshot-2023-03-13-at-16.56.37.png","width":923,"height":483,"caption":"write a program that prints out odd numbers from 1 - 10"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/write-a-javascript-program-that-prints-out-odd-numbers-from-1-10\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"softare development","item":"https:\/\/codeflarelimited.com\/blog\/softare-development\/"},{"@type":"ListItem","position":3,"name":"Write a JavaScript Program That Prints Out Odd Numbers From 1 &#8211; 10"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Screenshot-2023-03-13-at-16.56.37.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1217","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=1217"}],"version-history":[{"count":2,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1217\/revisions"}],"predecessor-version":[{"id":1243,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1217\/revisions\/1243"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/1218"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=1217"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=1217"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=1217"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}