{"id":42982,"date":"2024-02-29T13:50:29","date_gmt":"2024-02-29T08:20:29","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=42982"},"modified":"2025-10-24T15:29:00","modified_gmt":"2025-10-24T09:59:00","slug":"guide-for-variables-and-data-types-in-javascript","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/guide-for-variables-and-data-types-in-javascript\/","title":{"rendered":"Variables and Data Types in JavaScript: A Complete Guide"},"content":{"rendered":"\n<p>JavaScript programming introduces you to the two fundamental concepts for developing excellent web experiences: variables and data types. Variables act as identifiers for storing, retrieving, and manipulating data throughout your code, offering a way to dynamically interact with and track information. <\/p>\n\n\n\n<p>Data types, in parallel, define the kind of data you&#8217;re working with, from simple numbers and text to more complex structures, influencing how you can operate on the data stored in variables.&nbsp;<\/p>\n\n\n\n<p>Grasping these concepts is important, laying the foundation for JavaScript development. This blog aims to clarify variables and data types simply, ensuring a solid foundation for your programming journey.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is JavaScript?<\/strong><\/h2>\n\n\n\n<p><a href=\"https:\/\/www.guvi.in\/hub\/javascript\/\" target=\"_blank\" rel=\"noreferrer noopener\">JavaScript<\/a> is a powerful, versatile programming language primarily used for creating interactive and dynamic content on the web. It runs on the client&#8217;s browser, enabling web developers to implement complex features on web pages, such as real-time updates, interactive maps, animated 2D\/3D graphics, scrolling video jukeboxes, and much more. <\/p>\n\n\n\n<p><strong><em>Also Read: <a href=\"https:\/\/www.guvi.in\/blog\/the-5-most-user-friendly-programming-languages\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/blog\/the-5-most-user-friendly-programming-languages\/\" rel=\"noreferrer noopener\">The 5 Most User-Friendly Programming Languages<\/a><\/em><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/1-3.webp\" alt=\"JavaScript\" class=\"wp-image-44123\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/1-3.webp 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/1-3-300x157.webp 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/1-3-768x402.webp 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/1-3-150x79.webp 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>Having established a foundational understanding of what JavaScript is, let&#8217;s now learn the various data types that JavaScript supports, which serve as the backbone for data manipulation and functionality within the language.<\/p>\n\n\n\n<p>Before we move to the next section, make sure that you are strong in the full-stack development basics. If not, consider enrolling for a professionally<strong><a href=\"https:\/\/www.guvi.in\/zen-class\/full-stack-development-course\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=variables+and+data+types+in+javascript\" target=\"_blank\" rel=\"noreferrer noopener\"> certified online full-stack web development course<\/a><\/strong> by a recognized institution that can also offer you an industry-grade certificate that boosts your resume. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>JavaScript Data Types<\/strong><\/h2>\n\n\n\n<p>Understanding data types in JavaScript is important for effective programming. Data types specify the kind of data you can work with and how you can operate on that data. They are foundational in helping programmers understand what operations are possible on a given piece of data.<\/p>\n\n\n\n<p>Data types are important because they help enforce the correctness of your code. They define the operations you can perform with your data, the storage space it occupies, and how the computer interprets it. In JavaScript, knowing your data types means you can write more predictable and bug-free code.<\/p>\n\n\n\n<p><strong>Also Read: <a href=\"https:\/\/www.guvi.in\/blog\/javascript-tools-every-developer-should-know\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/blog\/javascript-tools-every-developer-should-know\/\" rel=\"noreferrer noopener\">JavaScript Tools Every Developer Should Know<\/a><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/4-.webp\" alt=\"JavaScript\" class=\"wp-image-44127\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/4-.webp 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/4--300x157.webp 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/4--768x402.webp 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/4--150x79.webp 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>JavaScript Primitive Data Types<\/strong><\/h3>\n\n\n\n<p><strong>1. String<\/strong>: A string represents textual data. It&#8217;s a sequence of characters used to store and manipulate text.<\/p>\n\n\n\n<p><strong>Example<\/strong>:<\/p>\n\n\n\n<p>let greeting = &#8220;Hello, World!&#8221;;<\/p>\n\n\n\n<p><strong>2. Number<\/strong>: The number data type handles both integers and floating-point numbers. It&#8217;s used for any numeric value.<\/p>\n\n\n\n<p><strong>Example<\/strong>:<\/p>\n\n\n\n<p>let integerExample = 10;<\/p>\n\n\n\n<p>let floatingPointExample = 10.5;<\/p>\n\n\n\n<p><strong>3. Boolean<\/strong>: A boolean represents a logical entity and can have two values: true and false. It&#8217;s often used in conditional statements.<\/p>\n\n\n\n<p><strong>Example<\/strong>:<\/p>\n\n\n\n<p>let isJavaScriptFun = true;<\/p>\n\n\n\n<p><strong>4. Undefined<\/strong>: The undefined data type represents a variable that has been declared but not assigned a value.<\/p>\n\n\n\n<p><strong>Example<\/strong>:<\/p>\n\n\n\n<p>let thisIsUndefined;<\/p>\n\n\n\n<p><strong>5. Null<\/strong>: Null is an assignment value that represents the intentional absence of any object value. Undefined means a variable has been declared but not defined.<\/p>\n\n\n\n<p><strong>Example<\/strong>:<\/p>\n\n\n\n<p>let thisIsNull = null;<\/p>\n\n\n\n<p><strong>6. Symbol<\/strong>: Introduced in <a href=\"https:\/\/www.guvi.in\/blog\/features-of-ecmascript\/\" target=\"_blank\" rel=\"noreferrer noopener\">ECMAScript<\/a> 2015, Symbol is a primitive data type that is unique and immutable. It&#8217;s used as the key for object properties.<\/p>\n\n\n\n<p><strong><em>Also Read: <a href=\"https:\/\/www.guvi.in\/blog\/javascript-questions-towards-better-interviews\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/blog\/javascript-questions-towards-better-interviews\/\" rel=\"noreferrer noopener\">42 JavaScript Questions Towards Better Interviews<\/a><\/em><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/5-.webp\" alt=\"JavaScript\" class=\"wp-image-44128\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/5-.webp 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/5--300x157.webp 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/5--768x402.webp 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/5--150x79.webp 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>JavaScript Non-primitive Data Types<\/strong><\/h3>\n\n\n\n<p><strong>1. Object<\/strong>: Objects in JavaScript are collections of properties. They are significant for storing, manipulating, and representing data in a structured way.<\/p>\n\n\n\n<p><strong>Example<\/strong><\/p>\n\n\n\n<p>let person = {<\/p>\n\n\n\n<p>&nbsp;&nbsp;firstName: &#8220;John&#8221;,<\/p>\n\n\n\n<p>&nbsp;&nbsp;lastName: &#8220;Doe&#8221;,<\/p>\n\n\n\n<p>&nbsp;&nbsp;age: 30<\/p>\n\n\n\n<p>};<\/p>\n\n\n\n<p><strong>2. Array<\/strong>: <a href=\"https:\/\/support.microsoft.com\/en-au\/office\/guidelines-and-examples-of-array-formulas-7d94a64e-3ff3-4686-9372-ecfd5caa57c7\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/support.microsoft.com\/en-au\/office\/guidelines-and-examples-of-array-formulas-7d94a64e-3ff3-4686-9372-ecfd5caa57c7\" rel=\"noreferrer noopener\">Arrays<\/a> are used to store multiple values in a single variable. They are objects that represent a list of items.<\/p>\n\n\n\n<p><strong>Example<\/strong><\/p>\n\n\n\n<p>let fruits = [&#8220;Apple&#8221;, &#8220;Banana&#8221;, &#8220;Cherry&#8221;];<\/p>\n\n\n\n<p><strong><em>Also Read: <a href=\"https:\/\/www.guvi.in\/blog\/how-to-render-an-array-of-objects-in-react\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/blog\/how-to-render-an-array-of-objects-in-react\/\" rel=\"noreferrer noopener\">How to Render an Array of Objects in React? [in 3 easy steps]<\/a><\/em><\/strong><\/p>\n\n\n\n<p><strong>3. Function<\/strong>: In JavaScript, functions are first-class objects, meaning they can be stored in variables, passed as arguments to other functions, and returned from functions.<\/p>\n\n\n\n<p><strong>Example<\/strong><\/p>\n\n\n\n<p>function greet(name) {<\/p>\n\n\n\n<p>&nbsp;&nbsp;return `Hello, ${name}!`;<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>greet(&#8220;Alice&#8221;);<\/p>\n\n\n\n<p><strong><em>Also Read: <a href=\"https:\/\/www.guvi.in\/blog\/usestate-hook-in-react-for-beginners-react-hooks\/\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/blog\/usestate-hook-in-react-for-beginners-react-hooks\/\">useState() Hook in React for Beginners | React Hooks<\/a><\/em><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/6-.webp\" alt=\"JavaScript\" class=\"wp-image-44129\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/6-.webp 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/6--300x157.webp 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/6--768x402.webp 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/6--150x79.webp 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>Each data type in JavaScript has its unique features and use cases. Understanding these will help you make the most of JavaScript&#8217;s flexibility and expressiveness in your programming projects.<\/p>\n\n\n\n<p><strong><em>Also Read: <a href=\"https:\/\/www.guvi.in\/blog\/javascript-frontend-roadmap\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/blog\/javascript-frontend-roadmap\/\" rel=\"noreferrer noopener\">Master JavaScript Frontend Roadmap: From Novice to Expert <\/a><\/em><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/2-.webp\" alt=\"JavaScript\" class=\"wp-image-44125\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/2-.webp 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/2--300x157.webp 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/2--768x402.webp 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/2--150x79.webp 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<p>Having explored the foundational JavaScript data types, it&#8217;s time to turn our attention to another fundamental concept: JavaScript variables. These are the containers that store data values, allowing us to label and manipulate data efficiently in our programs. Let&#8217;s learn how variables work in JavaScript and how they can be used to hold the data types we&#8217;ve just discussed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>JavaScript Variables<\/strong><\/h2>\n\n\n\n<p>In JavaScript, variables are the containers for storing data values. They let us label data with a descriptive name, so our programs can be understood more clearly by humans and manipulated more easily by the computer.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>var<\/strong><\/h3>\n\n\n\n<p><strong>Usage<\/strong>: Historically used for declaring variables in JavaScript.<\/p>\n\n\n\n<p><strong>Scope<\/strong>: Function scope, meaning if it&#8217;s declared inside a function, it&#8217;s only available within that function.<\/p>\n\n\n\n<p><strong>Hoisting<\/strong>: Variables declared with var are hoisted to the top of their scope, initialized with undefined.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Example:<\/strong><\/h4>\n\n\n\n<p>var greeting = &#8220;Hello, world!&#8221;;<\/p>\n\n\n\n<p>console.log(greeting);&nbsp; <\/p>\n\n\n\n<p>Output: &#8220;Hello, world!&#8221;<\/p>\n\n\n\n<p><strong><em>Also Read: <a href=\"https:\/\/www.guvi.in\/blog\/what-is-the-difference-between-var-functionname-function-and-function-functionname\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/blog\/what-is-the-difference-between-var-functionname-function-and-function-functionname\/\" rel=\"noreferrer noopener\">\u201cvar functionName = function\u201d VS \u201cfunction functionName\u201d<\/a><\/em><\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>let<\/strong><\/h3>\n\n\n\n<p><strong>Usage<\/strong>: Introduced in ES6 (ECMAScript 2015) for declaring variables that can change later.<\/p>\n\n\n\n<p><strong>Scope<\/strong>: Block scope, which means it&#8217;s only available within the block (like loops or conditionals) it was declared in.<\/p>\n\n\n\n<p><strong>Hoisting<\/strong>: Variables declared with let are hoisted to the top of their block scope but are not initialized, leading to a &#8220;Temporal Dead Zone&#8221; until the declaration is reached.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Example:<\/strong><\/h4>\n\n\n\n<p>let age = 25;<\/p>\n\n\n\n<p>age = 26;&nbsp; \/\/ reassigning the value<\/p>\n\n\n\n<p>console.log(age);&nbsp; <\/p>\n\n\n\n<p>Output: 26<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>const<\/strong><\/h3>\n\n\n\n<p><strong>Usage<\/strong>: Also introduced in ES6 for declaring variables that are not meant to change after their initial assignment.<\/p>\n\n\n\n<p><strong>Scope<\/strong>: Block scope, similar to let.<\/p>\n\n\n\n<p><strong>Hoisting<\/strong>: Like let, const declarations are hoisted to the top of their block but are not initialized.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Example:<\/strong><\/h4>\n\n\n\n<p>const PI = 3.14;<\/p>\n\n\n\n<p>console.log(PI);&nbsp; \/\/ 3.14<\/p>\n\n\n\n<p>\/\/ PI = 3.14159;&nbsp; \/\/ This will throw an error because const values cannot be reassigned<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>When to Use Each<\/strong><\/h3>\n\n\n\n<ol>\n<li>Use <strong>var <\/strong>if you need a variable with function scope or if you&#8217;re working in an environment that doesn&#8217;t support ES6.<\/li>\n\n\n\n<li>Use <strong>let <\/strong>when you need a block-scoped variable that you plan to reassign.<\/li>\n\n\n\n<li>Use <strong>const <\/strong>for block-scoped variables that should not be reassigned after their initial declaration.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Scope and Hoisting<\/strong><\/h3>\n\n\n\n<ol>\n<li><strong>Scope <\/strong>determines where variables and functions are accessible within your code. Variables declared with var have function scope, while let and const have block scope.<\/li>\n<\/ol>\n\n\n\n<ol start=\"2\">\n<li><strong>Hoisting <\/strong>is JavaScript&#8217;s default behavior of moving declarations to the top of their scope before code execution. While var variables are hoisted and initialized with undefined, let and const are hoisted but not initialized, meaning they cannot be accessed until their declaration is evaluated at runtime.<\/li>\n<\/ol>\n\n\n\n<p class=\"has-text-align-center\"><strong><em>Are you ready to transform your career and become a tech industry pro? Join HCL GUVI&#8217;s <a href=\"https:\/\/www.guvi.in\/zen-class\/full-stack-development-course\/?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=variables+and+data+types+in+javascript\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/zen-class\/full-stack-development-course\/?utm_source=blogs&amp;utm_medium=organic&amp;utm_campaign=Variables+and+Data+Types+in+JavaScript\" target=\"_blank\" rel=\"noreferrer noopener\">Full Stack Development Course<\/a> and master the skills needed to excel as a developer. Enroll now!<\/em><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/3-webp.webp\" alt=\"JavaScript\" class=\"wp-image-44126\" srcset=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/3-webp.webp 1200w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/3-webp-300x157.webp 300w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/3-webp-768x402.webp 768w, https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/03\/3-webp-150x79.webp 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" title=\"\"><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Remember, every great developer started somewhere, and the willingness to experiment, make mistakes, and learn from them is what leads to mastery. So, start coding, and watch as the concepts of variables and data types become second nature in your JavaScript adventures.<\/p>\n\n\n\n<p><strong>Must Read: <a href=\"https:\/\/www.guvi.in\/blog\/best-reasons-to-learn-javascript\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/blog\/best-reasons-to-learn-javascript\/\" rel=\"noreferrer noopener\">7 Best Reasons to Learn JavaScript | 1 Bonus Point<\/a><\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQs<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1709115432429\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">How do let, var and const differ?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p><strong>var<\/strong>: Function scope, can be redeclared and updated.<br \/><strong>let<\/strong>: Block scope, can&#8217;t be redeclared in the same scope, can be updated.<br \/><strong>const<\/strong>: Block scope, can&#8217;t be redeclared or updated, must be initialized.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1709115442899\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">Why are data types important in JavaScript?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>They determine how data can be used and manipulated, affecting operations and preventing errors. Understanding them helps in organizing and managing data effectively.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1709115453925\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">What&#8217;s the difference between undefined and null?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p><strong>undefined<\/strong>: Indicates a declared but not yet assigned variable.<br \/><strong>null<\/strong>: Intentionally set to represent &#8216;no value&#8217;, used to clear or reset variables.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>JavaScript programming introduces you to the two fundamental concepts for developing excellent web experiences: variables and data types. Variables act as identifiers for storing, retrieving, and manipulating data throughout your code, offering a way to dynamically interact with and track information. Data types, in parallel, define the kind of data you&#8217;re working with, from simple [&hellip;]<\/p>\n","protected":false},"author":19,"featured_media":44130,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[294],"tags":[],"views":"8792","authorinfo":{"name":"Meghana D","url":"https:\/\/www.guvi.in\/blog\/author\/meghana\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/02\/feature_image-1-2-300x157.webp","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2024\/02\/feature_image-1-2.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/42982"}],"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\/19"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=42982"}],"version-history":[{"count":25,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/42982\/revisions"}],"predecessor-version":[{"id":91163,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/42982\/revisions\/91163"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/44130"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=42982"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=42982"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=42982"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}