{"id":100634,"date":"2026-02-09T17:16:38","date_gmt":"2026-02-09T11:46:38","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=100634"},"modified":"2026-04-06T18:00:10","modified_gmt":"2026-04-06T12:30:10","slug":"lexical-scope-in-javascript-explained","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/lexical-scope-in-javascript-explained\/","title":{"rendered":"Lexical Scope in JavaScript: A Simple and Easy Guide"},"content":{"rendered":"\n<p>When you begin learning JavaScript, it seems easy to write code at first. You declare variables, code functions, and console values. However, as your programs increase in size, you might find some confusing errors such as your variable not being defined or you are getting some unexpected results that do not match your logic.<\/p>\n\n\n\n<p>A majority of these problems are not related to syntax errors. Rather they occur due to the fact that JavaScript obeys certain rules regarding the locations of variables that may be accessed. The concept that regulates these rules is called lexical scope in JavaScript.<\/p>\n\n\n\n<p>One of the most simple blocks of JavaScript is lexical scope. It shapes the behavior of variables, the way functions interact, the behavior of closures as well as the data manipulation behavior of modern JavaScript frameworks. Several higher level subjects will be confusing and unpredictable without such a notion.<\/p>\n\n\n\n<p>In this blog we shall explicitly clarify what is lexical scope in JavaScript, how it functions internally, why it is used in JavaScript and its impact to real world code. All the explanations are easy to understand, practical and follow-up.<\/p>\n\n\n\n<p><strong>Quick answer:<\/strong><\/p>\n\n\n\n<p>Lexical scope in JavaScript means that a variable\u2019s accessibility is determined by where it is written in the source code. JavaScript decides which variables a function can access by looking at the physical structure of the code, not by how or where the function is called. This scope is fixed at the time of writing the code, making JavaScript predictable and easier to debug.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Understanding Scope Before Lexical Scope<\/h2>\n\n\n\n<p>It is essential to know what scope is in general before getting into the details of lexical scopes in JavaScript.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What Is Scope?<\/strong><\/h3>\n\n\n\n<p>Scope is used to determine the accessibility of variables and functions in various sections of your code. In short, scope provides answers to questions such as:<\/p>\n\n\n\n<ul>\n<li>Where can I use this variable?<\/li>\n\n\n\n<li>Where does this function exist?<\/li>\n\n\n\n<li>Why does JavaScript not find a variable, despite me declaring that one?<\/li>\n<\/ul>\n\n\n\n<p>In JavaScript, scope is used to ensure that variables do not interfere with one another and keep the code arranged and safe.<\/p>\n\n\n\n<p><strong><em>Also read: <\/em><\/strong><a href=\"https:\/\/www.guvi.in\/blog\/objects-methods-and-classes-in-javascript\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><em>A Comprehensive Guide On Objects, Methods, and Classes In JavaScript<\/em><\/strong><\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Scopes in JavaScript<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Scopes-in-JavaScript-1200x630.png\" alt=\"\" class=\"wp-image-106030\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Scopes-in-JavaScript-1200x630.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Scopes-in-JavaScript-300x158.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Scopes-in-JavaScript-768x403.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Scopes-in-JavaScript-1536x806.png 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Scopes-in-JavaScript-2048x1075.png 2048w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Scopes-in-JavaScript-150x79.png 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>1. Global Scope<\/strong><\/h4>\n\n\n\n<p>Variables declared outside all functions or blocks belong to the global scope.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>let siteName = &#8220;GUVI&#8221;;<br><br>function showSite() {<br>&nbsp; console.log(siteName);<br>}<br><br>showSite();<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul>\n<li>siteName is accessible everywhere<\/li>\n\n\n\n<li>Excess use of global variables may create bugs.<\/li>\n\n\n\n<li>Global scope should be used sparingly<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>2. Function Scope<\/strong><\/h4>\n\n\n\n<p>Function scope means variables that are declared within a function cannot be accessed outside the function.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>function calculate() {<br>&nbsp; let total = 100;<br>&nbsp; console.log(total);<br>}<br><br>calculate();<br>T\/\/ console.log(total); \/\/ ReferenceError<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The isolation helps in avoiding accidental overwrites and enhances safety of the codes.<\/p>\n\n\n\n<p><strong><em>Also read: <\/em><\/strong><a href=\"https:\/\/www.guvi.in\/blog\/javascript-questions-towards-better-interviews\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><em>45 JavaScript Questions Towards Better Interviews<\/em><\/strong><\/a><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>3. Block Scope<\/strong><\/h4>\n\n\n\n<p>Block scope is offered to variables that are declared by usinglet and const within.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>if (true) {<br>&nbsp; let score = 90;<br>&nbsp; console.log(score);<br>}<br><br>\/\/ console.log(score); \/\/ Error<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>JavaScript is more predictable and debugable because of block scope.<\/p>\n\n\n\n<p><strong><em>Also read: <\/em><\/strong><a href=\"https:\/\/www.guvi.in\/blog\/learn-javascript-by-building-code\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><em>From Tutorials To Real Code: Building While You Learn JavaScript<\/em><\/strong><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Is Lexical Scope in JavaScript?<\/h2>\n\n\n\n<p><a href=\"https:\/\/stackoverflow.com\/questions\/1047454\/what-is-lexical-scope\" target=\"_blank\" rel=\"noopener\">Lexical scope<\/a> in JavaScript refers to the rule that a variable\u2019s accessibility is determined by where it is written in the source code.<\/p>\n\n\n\n<p>In simpler words:<\/p>\n\n\n\n<p>JavaScript uses the code structure to determine the variable scope, and not the execution of functions.<\/p>\n\n\n\n<p>This means:<\/p>\n\n\n\n<ul>\n<li>Scope is fixed at the time of writing the code<\/li>\n\n\n\n<li>Functions remember their surrounding environment<\/li>\n\n\n\n<li>The scope does not change dynamically<\/li>\n<\/ul>\n\n\n\n<p><strong><em>Also read: <\/em><\/strong><a href=\"https:\/\/www.guvi.in\/blog\/javascript-roadmap-for-beginners\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><em>Best JavaScript Roadmap Beginners Should Follow<\/em><\/strong><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why Lexical Scope Is Predictable<\/h2>\n\n\n\n<p>Unlike some languages that determine scope at runtime, JavaScript uses static scoping, also known as lexical scoping.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Why-Lexical-Scope-is-Predictable-1200x630.png\" alt=\"\" class=\"wp-image-106032\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Why-Lexical-Scope-is-Predictable-1200x630.png 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Why-Lexical-Scope-is-Predictable-300x158.png 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Why-Lexical-Scope-is-Predictable-768x403.png 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Why-Lexical-Scope-is-Predictable-1536x806.png 1536w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Why-Lexical-Scope-is-Predictable-2048x1075.png 2048w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/04\/Why-Lexical-Scope-is-Predictable-150x79.png 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>This makes JavaScript:<\/p>\n\n\n\n<ul>\n<li>Easier to reason about<\/li>\n\n\n\n<li>Easier to debug<\/li>\n\n\n\n<li>Safer when it comes to large applications.<\/li>\n<\/ul>\n\n\n\n<p>When developers ask what is lexical scope in JavaScript, they are really asking how JavaScript maintains consistency and structure in complex programs.<\/p>\n\n\n\n<p><strong><em>Also read: <\/em><\/strong><a href=\"https:\/\/www.guvi.in\/blog\/tips-and-tricks-for-javascript-debugging-skills\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><em>Best Tips and Tricks for JavaScript Debugging Skills [2026]<\/em><\/strong><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Nested Functions Lexical Scope<\/h2>\n\n\n\n<p>JavaScript has outstanding lexical scope in the use of nested functions.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>function parent() {<br>&nbsp; parentVar = &#8220;I am from parent;<br><br>&nbsp; function child() {<br>&nbsp; &nbsp; let childVar = &#8220;I am from child&#8221;;<br>&nbsp; &nbsp; console.log(parentVar);<br>&nbsp; &nbsp; console.log(childVar);<br>&nbsp; }<br><br>&nbsp; child();<br>}<br><br>parent();<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Why This Works:<\/strong><\/p>\n\n\n\n<ul>\n<li>child() is written inside parent()<\/li>\n\n\n\n<li>JavaScript enables child to refer to parentVar.<\/li>\n\n\n\n<li>The scope is outward, and never inward.<\/li>\n<\/ul>\n\n\n\n<p><strong><em>Also read: <\/em><\/strong><a href=\"https:\/\/www.guvi.in\/blog\/best-javascript-frameworks\/\"><strong><em>Best JavaScript Frameworks in 2026<\/em><\/strong><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Invalid Access Example<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>function parent() {<br>&nbsp; function child() {<br>&nbsp; &nbsp; let secret = &#8220;hidden&#8221;;<br>&nbsp; }<br>&nbsp; \/\/ console.log(secret); \/\/ Error<br>}<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>It is so due to lexical scopes regulations.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Lexical Environment<\/h2>\n\n\n\n<p>Each time JavaScript is running some code, it constructs something known as a lexical environment.<\/p>\n\n\n\n<p>There is a lexical environment that includes:<\/p>\n\n\n\n<ul>\n<li>Variable declarations<\/li>\n\n\n\n<li>Function declarations<\/li>\n\n\n\n<li>A reference to the outer lexical environment<\/li>\n<\/ul>\n\n\n\n<p>The Lexical environment of each of the functions is associated with its parent.<\/p>\n\n\n\n<p><strong><em>Also read: <\/em><\/strong><a href=\"https:\/\/www.guvi.in\/blog\/learn-javascript-in-regional-languages\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><em>Best 5 Reasons to learn JavaScript in regional languages<\/em><\/strong><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Lexical Scope and Closures<\/h2>\n\n\n\n<p>One of the strongest features in JavaScript is <a href=\"https:\/\/www.greatfrontend.com\/questions\/quiz\/what-is-a-closure-and-how-why-would-you-use-one\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">closures<\/a> which depend entirely on the lexical scope.<\/p>\n\n\n\n<p>Learning about Closures through an example<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>function greeting(name) {<br>&nbsp; return function () {<br>&nbsp; &nbsp; console.log(&#8220;Hello, &#8221; + name);<br>&nbsp; };<br>}<br><br>greetUser = greeting ( Vishalini ) would be a constant;<br>greetUser();<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>What Happens Internally?<\/strong><\/p>\n\n\n\n<ul>\n<li>greetUser remembers name<\/li>\n\n\n\n<li>The external role has been completed.<\/li>\n\n\n\n<li>The inner is not shut off to the inner.<\/li>\n\n\n\n<li>This is the memory which is maintained due to lexical scope.<\/li>\n<\/ul>\n\n\n\n<p>Closures are magical without knowing anything about lexical scope in JavaScript, but are rational and predictable.<\/p>\n\n\n\n<p><em>If you want to explore JavaScript through a self-paced course, try HCL GUVI\u2019s<\/em><a href=\"https:\/\/www.guvi.in\/courses\/web-development\/advanced-javascript\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Lexical+Scope+in+JavaScript\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/courses\/web-development\/advanced-javascript\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Lexical+Scope+in+JavaScript\" rel=\"noreferrer noopener\"><em> JavaScript course.<\/em><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Lexical Scope with var, let, and const<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>var and Lexical Scope<\/strong><\/h3>\n\n\n\n<ul>\n<li>Function-scoped<\/li>\n\n\n\n<li>Possible to result in unpredictable behaviour.<\/li>\n\n\n\n<li>Not block-scoped<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>for (var i = 0; i &lt; 3; i++) {<br>&nbsp; console.log(i);<br>}<br>console.log(i); \/\/ 3<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>let and const<\/strong><\/h3>\n\n\n\n<ul>\n<li>Block-scoped<\/li>\n\n\n\n<li>Safer and modern<\/li>\n\n\n\n<li>Preferred in real projects<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>for (let i = 0; i &lt; 3; i++) {<br>&nbsp; console.log(i);<br>}<br>\/\/ console.log(i);&nbsp; Error<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The lexical scope is more intuitive regarding let and const.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Common Lexical Scope Confusions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Confusion 1: Function Call vs Function Definition<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>let value = 10;<br><br>function display() {<br>&nbsp; console.log(value);<br>}<br><br>function run(fn) {<br>&nbsp; let value = 20;<br>&nbsp; fn();<br>}<br><br>run(display);<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Output: 10<\/p>\n\n\n\n<p><strong>Why?<\/strong><\/p>\n\n\n\n<p>Since lexical scope relies on the definition of display, and not the calling of it.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Confusion 2: Shadowing Variables<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>let count = 5;<br><br>function example() {<br>&nbsp; let count = 10;<br>&nbsp; console.log(count);<br>}<br><br>example();<br>console.log(count);<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This is referred to as variable shadowing and totally determined by lexical scope.<\/p>\n\n\n\n<p><strong><em>Also read: <\/em><\/strong><a href=\"https:\/\/www.guvi.in\/blog\/backend-development-with-javascript\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><em>Master Backend Development With JavaScript | Become a Pro<\/em><\/strong><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Arrows and Lexical Scopes<\/h2>\n\n\n\n<p>The arrow functions obey the lexical scope rules as ordinary functions.<\/p>\n\n\n\n<p>They also inherit:<\/p>\n\n\n\n<ul>\n<li>Lexical this<\/li>\n\n\n\n<li>Lexical arguments (in a way)&nbsp;<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>let language = &#8220;JavaScript&#8221;;<br><br>const showLang = () =&gt; {<br>&nbsp; console.log(language);<br>};<br><br>showLang();<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Real-World Importance of Lexical Scope<\/h2>\n\n\n\n<ul>\n<li>Helps write clean and well-structured JavaScript code<\/li>\n\n\n\n<li>Prevents common errors like undefined variables<\/li>\n\n\n\n<li>Controls where variables can be accessed<\/li>\n\n\n\n<li>Makes debugging easier and faster<\/li>\n\n\n\n<li>Essential for understanding closures<\/li>\n\n\n\n<li>Plays a key role in asynchronous JavaScript<\/li>\n\n\n\n<li>Widely used in modern frameworks and libraries<\/li>\n\n\n\n<li>Improves code scalability and maintainability<\/li>\n\n\n\n<li>Frequently asked concept in JavaScript interviews<\/li>\n<\/ul>\n\n\n\n<p><em>Kickstart your Full Stack Development journey by enrolling in HCL GUVI\u2019s certified <\/em><a href=\"https:\/\/www.guvi.in\/zen-class\/full-stack-development-course\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=Lexical+Scope+in+JavaScript\" target=\"_blank\" rel=\"noreferrer noopener\"><em>Full Stack Development Course<\/em><\/a><em> with Placement Assistance where you will master the MERN stack (MongoDB, Express.js, React, Node.js) and build interesting real-life projects.<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Wrapping it up<\/strong><\/h2>\n\n\n\n<p>When learning about lexical scope in JavaScript, it can seem abstract at first. However, once you have learned what it is, the language is much easier to reason about. Many bugs will go away simply because you will understand where variables are stored and how they can be resolved\/located by the JavaScript engine.<\/p>\n\n\n\n<p>If you understand what lexical scoping is in JavaScript, you will be able to do more than just write code; you will be able to think like a JavaScript engine.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">FAQs<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1770635691450\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1) Is Block Scope the Same as Lexical Scope?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>No, Lexical Scope is determined mostly by where you initially declare the variable in your code, whereas Block Scope is determined by where that variable exists in the code before or after it is actually declared.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770635701299\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2) Does Var Follow Lexical Scope?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes, but there is also Function Scope associated with var Declared Variables which could sometimes lead to non-predictive behavior.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770635722886\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3) Do Arrow Functions Follow Lexical Scope?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes, Arrow Functions utilize Lexical Scope, but they also inherit Lexical This.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1770635740902\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4) What Is The Importance Of Lexical Scope In JavaScript?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Predictability of Code, Reduced Bugs, Closures.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>When you begin learning JavaScript, it seems easy to write code at first. You declare variables, code functions, and console values. However, as your programs increase in size, you might find some confusing errors such as your variable not being defined or you are getting some unexpected results that do not match your logic. A [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":106028,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[429,294,907],"tags":[],"views":"1590","authorinfo":{"name":"Vishalini Devarajan","url":"https:\/\/www.guvi.in\/blog\/author\/vishalini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/Lexical-Scope-in-JavaScript-A-Simple-and-Easy-Guide-300x116.png","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/02\/Lexical-Scope-in-JavaScript-A-Simple-and-Easy-Guide.png","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/100634"}],"collection":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/users\/63"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=100634"}],"version-history":[{"count":4,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/100634\/revisions"}],"predecessor-version":[{"id":106033,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/100634\/revisions\/106033"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/106028"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=100634"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=100634"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=100634"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}