{"id":47,"date":"2020-11-02T13:50:08","date_gmt":"2020-11-02T13:50:08","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=47"},"modified":"2021-05-31T05:39:39","modified_gmt":"2021-05-31T04:39:39","slug":"differences-between-var-let-and-const","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/","title":{"rendered":"Differences Between var, let and const."},"content":{"rendered":"\n<p><span class=\"has-inline-color has-accent-color\"><strong>Var<\/strong><\/span> <strong><span class=\"has-inline-color has-accent-color\">Declaration<\/span><\/strong><\/p>\n\n\n\n<p><a href=\"http:\/\/www.ecma-international.org\/ecma-262\/6.0\/\" target=\"_blank\" rel=\"noreferrer noopener\">Before the introduction of ES6 in 2015<\/a>, <strong><span class=\"has-inline-color has-primary-color\">var<\/span><\/strong> was the go-to way to declare variables in Javascript.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">var a;\na = 5;\nconsole.log(a) \/\/5<\/code><\/pre>\n\n\n\n<p>But because variable declarations are processed before any code is executed, declaring a variable anywhere in the code is equivalent to declaring it at the top. <\/p>\n\n\n\n<p>This also means that a variable can appear to be used before it is declared.<\/p>\n\n\n\n<p>This behaviour is called <span class=\"has-inline-color has-accent-color\">&#8220;hoisting.&#8221;<\/span><\/p>\n\n\n\n<p>Example<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">console.log(bar); \/\/undefined\nvar bar = 22;\nconsole.log(bar) \/\/22\nbar = 33;\nconsole.log(bar) \/\/33<\/code><\/pre>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https:\/\/codeflarelimited.com\/catalogue\/frontend\" target=\"_blank\" rel=\"noreferrer noopener\">begin your javascript training here<\/a><\/div>\n<\/div>\n\n\n\n<p><span class=\"has-inline-color has-accent-color\"><strong>Let<\/strong><\/span> <strong><span class=\"has-inline-color has-accent-color\">Declaration<\/span><\/strong><\/p>\n\n\n\n<p>&#8220;let&#8221; is one of the ES6 additions to Javascript.<\/p>\n\n\n\n<p>When you use this type of declaration, you are saying you want the variable to be reassigned but not to be redeclared.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">let a = 3;\nconsole.log(a) \/\/3\nlet a = 5;\nconsole.log(a) \/\/Identifier 'a' has already been declared\n\n\/\/But if we reassign like so\na = 6;\nconsole.log(a) \/\/6<\/code><\/pre>\n\n\n\n<p><strong><span class=\"has-inline-color has-accent-color\"> Const Declaration<\/span><\/strong><\/p>\n\n\n\n<p>&#8216;const&#8217; is also an ES6 addition.<\/p>\n\n\n\n<p>When you use const to declare a variable, you are saying that you don&#8217;t want that variable to be reassigned or be redeclared.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">const a = 33;\nconsole.log(a) \/\/33\nconst a = 34;\nconsole.log(a) \/\/Identifier 'a' has already been declared\n\n\/\/Even if we reassign\na = 35;\nconsole.log(a) \/\/Assignment to constant variable<\/code><\/pre>\n\n\n\n<p><strong><span class=\"has-inline-color has-accent-color\">In Summary &#8230;<\/span><\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>A var type variable declaration can be both be redeclared and reassigned.<\/li><li>A let type declaration can only be reassigned but not redeclared.<\/li><li>A const type declaration can neither be redeclared or reassigned.<\/li><\/ol>\n","protected":false},"excerpt":{"rendered":"<p>Var Declaration Before the introduction of ES6 in 2015, var was the go-to way to declare variables in<\/p>\n","protected":false},"author":1,"featured_media":44,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[11],"tags":[7,6,9,5,8,10],"class_list":["post-47","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript","tag-coding","tag-es6","tag-ict","tag-javascript","tag-programming","tag-software-development-training"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Differences Between var, let and const.<\/title>\n<meta name=\"description\" content=\"var, let and const are one of the three ways you could declare a variable in javascript. var used to be the standard for variable declaration\" \/>\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\/differences-between-var-let-and-const\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Differences Between var, let and const.\" \/>\n<meta property=\"og:description\" content=\"var, let and const are one of the three ways you could declare a variable in javascript. var used to be the standard for variable declaration\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2020-11-02T13:50:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-31T04:39:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/Screenshot-2020-11-02-at-14.13.45.png\" \/>\n\t<meta property=\"og:image:width\" content=\"793\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\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\\\/differences-between-var-let-and-const\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/differences-between-var-let-and-const\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"Differences Between var, let and const.\",\"datePublished\":\"2020-11-02T13:50:08+00:00\",\"dateModified\":\"2021-05-31T04:39:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/differences-between-var-let-and-const\\\/\"},\"wordCount\":178,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/differences-between-var-let-and-const\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/Screenshot-2020-11-02-at-14.13.45.png\",\"keywords\":[\"coding\",\"ES6\",\"ict\",\"Javascript\",\"programming\",\"software development training\"],\"articleSection\":[\"javascript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/differences-between-var-let-and-const\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/differences-between-var-let-and-const\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/differences-between-var-let-and-const\\\/\",\"name\":\"Differences Between var, let and const.\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/differences-between-var-let-and-const\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/differences-between-var-let-and-const\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/Screenshot-2020-11-02-at-14.13.45.png\",\"datePublished\":\"2020-11-02T13:50:08+00:00\",\"dateModified\":\"2021-05-31T04:39:39+00:00\",\"description\":\"var, let and const are one of the three ways you could declare a variable in javascript. var used to be the standard for variable declaration\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/differences-between-var-let-and-const\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/differences-between-var-let-and-const\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/differences-between-var-let-and-const\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/Screenshot-2020-11-02-at-14.13.45.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/Screenshot-2020-11-02-at-14.13.45.png\",\"width\":793,\"height\":450,\"caption\":\"Javascript tutorial by codeflare\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/differences-between-var-let-and-const\\\/#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\":\"Differences Between var, let and const.\"}]},{\"@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":"Differences Between var, let and const.","description":"var, let and const are one of the three ways you could declare a variable in javascript. var used to be the standard for variable declaration","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\/differences-between-var-let-and-const\/","og_locale":"en_US","og_type":"article","og_title":"Differences Between var, let and const.","og_description":"var, let and const are one of the three ways you could declare a variable in javascript. var used to be the standard for variable declaration","og_url":"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2020-11-02T13:50:08+00:00","article_modified_time":"2021-05-31T04:39:39+00:00","og_image":[{"width":793,"height":450,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/Screenshot-2020-11-02-at-14.13.45.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\/differences-between-var-let-and-const\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"Differences Between var, let and const.","datePublished":"2020-11-02T13:50:08+00:00","dateModified":"2021-05-31T04:39:39+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/"},"wordCount":178,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/Screenshot-2020-11-02-at-14.13.45.png","keywords":["coding","ES6","ict","Javascript","programming","software development training"],"articleSection":["javascript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/","url":"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/","name":"Differences Between var, let and const.","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/Screenshot-2020-11-02-at-14.13.45.png","datePublished":"2020-11-02T13:50:08+00:00","dateModified":"2021-05-31T04:39:39+00:00","description":"var, let and const are one of the three ways you could declare a variable in javascript. var used to be the standard for variable declaration","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/Screenshot-2020-11-02-at-14.13.45.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/Screenshot-2020-11-02-at-14.13.45.png","width":793,"height":450,"caption":"Javascript tutorial by codeflare"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/differences-between-var-let-and-const\/#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":"Differences Between var, let and const."}]},{"@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\/2020\/11\/Screenshot-2020-11-02-at-14.13.45.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/47","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=47"}],"version-history":[{"count":6,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/47\/revisions"}],"predecessor-version":[{"id":663,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/47\/revisions\/663"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/44"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=47"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=47"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=47"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}