{"id":309,"date":"2021-01-18T03:43:03","date_gmt":"2021-01-18T03:43:03","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=309"},"modified":"2023-05-11T16:51:42","modified_gmt":"2023-05-11T15:51:42","slug":"null-vs-undefined-vs-not-defined","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/","title":{"rendered":"Null, Undefined and &#8220;Not defined&#8221; in Javascript"},"content":{"rendered":"\n<p>In <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/JavaScript\" target=\"_blank\" rel=\"noreferrer noopener\">JavaScript<\/a>, <strong><em><code>null<\/code>,<\/em><\/strong> <code><strong><em>undefined<\/em><\/strong><\/code>, and <code><strong><em>not defined<\/em><\/strong><\/code> are three distinct concepts that refer to different values or states. In this article we shall look at <strong><em>null<\/em><\/strong>, <strong><em>undefined<\/em><\/strong> and <strong><em>not defined<\/em><\/strong> in Javascript and their unique use cases<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-null\">Null<\/h2>\n\n\n\n<p>Null is the intentional absence of any object value. This could be a property of an object, or an expected value of a variable. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-example\">Example<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">let person = {\n\"name\": \"Lawson Luke\",\n\"hobby\": null\n}\nconsole.log(person.hobby); \/\/null<\/code><\/pre>\n\n\n\n<p> When validating user inputs, values can also be checked for null values<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">let email = null;\nif(email === null){\nalert('Please enter your email');\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-undefined\">Undefined<\/h2>\n\n\n\n<p>Undefined, in the simplest term, means that a property of variable is not initialized or does not exist.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">let person = {\n\"name\": \"Lawson Luke\",\n\"hobby\": \"coding\",\n}\nconsole.log(person.age); \/\/undefined<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-not-defined\">Not defined<\/h2>\n\n\n\n<p>&#8220;Not defined&#8221; refers to a variable that is not declared at any given point in time with the declaration keyword like var, let or const.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">console.log(name); \/\/Uncaught ReferenceError: name is not defined<\/code><\/pre>\n\n\n\n<p>It is important to note that <code><strong>null<\/strong><\/code> and <code><strong>undefined<\/strong><\/code> are distinct values, but they are both falsy values in JavaScript, which means they will evaluate to <code>false<\/code> in a Boolean context. Also, <code><strong><em>not defined<\/em><\/strong><\/code> is an error that occurs when you try to reference a variable or function that has not been declared<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p>Now we know the difference between null, undefined and &#8220;not defined&#8221; in Javascript, and we can begin to write cleaner code and better logic.<\/p>\n\n\n\n<p><a href=\"https:\/\/codeflarelimited.com\/blog\/javascript-search-api\/\" target=\"_blank\" rel=\"noreferrer noopener\">Javascript search API<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In JavaScript, null, undefined, and not defined are three distinct concepts that refer to different values or states.<\/p>\n","protected":false},"author":1,"featured_media":1350,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[11],"tags":[79,77,78],"class_list":["post-309","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript","tag-not-defined","tag-null","tag-undefined"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Null, Undefined and &quot;Not defined&quot; in Javascript<\/title>\n<meta name=\"description\" content=\"In JavaScript, null, undefined, and not defined are three distinct concepts that refer to different values or states.\" \/>\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\/null-vs-undefined-vs-not-defined\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Null, Undefined and &quot;Not defined&quot; in Javascript\" \/>\n<meta property=\"og:description\" content=\"In JavaScript, null, undefined, and not defined are three distinct concepts that refer to different values or states.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-18T03:43:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-11T15:51:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/01\/Screen-Shot-2023-05-11-at-4.16.53-PM.png\" \/>\n\t<meta property=\"og:image:width\" content=\"928\" \/>\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\\\/null-vs-undefined-vs-not-defined\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/null-vs-undefined-vs-not-defined\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"Null, Undefined and &#8220;Not defined&#8221; in Javascript\",\"datePublished\":\"2021-01-18T03:43:03+00:00\",\"dateModified\":\"2023-05-11T15:51:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/null-vs-undefined-vs-not-defined\\\/\"},\"wordCount\":200,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/null-vs-undefined-vs-not-defined\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Screen-Shot-2023-05-11-at-4.16.53-PM.png\",\"keywords\":[\"not defined\",\"null\",\"undefined\"],\"articleSection\":[\"javascript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/null-vs-undefined-vs-not-defined\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/null-vs-undefined-vs-not-defined\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/null-vs-undefined-vs-not-defined\\\/\",\"name\":\"Null, Undefined and \\\"Not defined\\\" in Javascript\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/null-vs-undefined-vs-not-defined\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/null-vs-undefined-vs-not-defined\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Screen-Shot-2023-05-11-at-4.16.53-PM.png\",\"datePublished\":\"2021-01-18T03:43:03+00:00\",\"dateModified\":\"2023-05-11T15:51:42+00:00\",\"description\":\"In JavaScript, null, undefined, and not defined are three distinct concepts that refer to different values or states.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/null-vs-undefined-vs-not-defined\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/null-vs-undefined-vs-not-defined\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/null-vs-undefined-vs-not-defined\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Screen-Shot-2023-05-11-at-4.16.53-PM.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Screen-Shot-2023-05-11-at-4.16.53-PM.png\",\"width\":928,\"height\":483,\"caption\":\"null, undefined and not defined\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/null-vs-undefined-vs-not-defined\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"javascript\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Null, Undefined and &#8220;Not defined&#8221; in Javascript\"}]},{\"@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":"Null, Undefined and \"Not defined\" in Javascript","description":"In JavaScript, null, undefined, and not defined are three distinct concepts that refer to different values or states.","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\/null-vs-undefined-vs-not-defined\/","og_locale":"en_US","og_type":"article","og_title":"Null, Undefined and \"Not defined\" in Javascript","og_description":"In JavaScript, null, undefined, and not defined are three distinct concepts that refer to different values or states.","og_url":"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2021-01-18T03:43:03+00:00","article_modified_time":"2023-05-11T15:51:42+00:00","og_image":[{"width":928,"height":483,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/01\/Screen-Shot-2023-05-11-at-4.16.53-PM.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\/null-vs-undefined-vs-not-defined\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"Null, Undefined and &#8220;Not defined&#8221; in Javascript","datePublished":"2021-01-18T03:43:03+00:00","dateModified":"2023-05-11T15:51:42+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/"},"wordCount":200,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/01\/Screen-Shot-2023-05-11-at-4.16.53-PM.png","keywords":["not defined","null","undefined"],"articleSection":["javascript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/","url":"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/","name":"Null, Undefined and \"Not defined\" in Javascript","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/01\/Screen-Shot-2023-05-11-at-4.16.53-PM.png","datePublished":"2021-01-18T03:43:03+00:00","dateModified":"2023-05-11T15:51:42+00:00","description":"In JavaScript, null, undefined, and not defined are three distinct concepts that refer to different values or states.","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/01\/Screen-Shot-2023-05-11-at-4.16.53-PM.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/01\/Screen-Shot-2023-05-11-at-4.16.53-PM.png","width":928,"height":483,"caption":"null, undefined and not defined"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/null-vs-undefined-vs-not-defined\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"javascript","item":"https:\/\/codeflarelimited.com\/blog\/javascript\/"},{"@type":"ListItem","position":3,"name":"Null, Undefined and &#8220;Not defined&#8221; in Javascript"}]},{"@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\/2021\/01\/Screen-Shot-2023-05-11-at-4.16.53-PM.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/309","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=309"}],"version-history":[{"count":6,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/309\/revisions"}],"predecessor-version":[{"id":1353,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/309\/revisions\/1353"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/1350"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=309"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=309"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=309"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}