{"id":2410,"date":"2023-11-22T04:15:55","date_gmt":"2023-11-22T04:15:55","guid":{"rendered":"https:\/\/uplatz.com\/blog\/?p=2410"},"modified":"2023-11-22T04:46:48","modified_gmt":"2023-11-22T04:46:48","slug":"react-interview-questions","status":"publish","type":"post","link":"https:\/\/uplatz.com\/blog\/react-interview-questions\/","title":{"rendered":"React Interview Questions"},"content":{"rendered":"<div class=\"logo-gutter ng-tns-c291539258-123 ng-star-inserted\">\n<div class=\"gutter ng-star-inserted\">\n<div>Here are some <strong>React interview questions and answers<\/strong> that cover a wide range of topics, from basic concepts to more advanced techniques.<\/div>\n<\/div>\n<\/div>\n<h3 data-sourcepos=\"3:1-3:26\"><\/h3>\n<h3 data-sourcepos=\"3:1-3:26\"><strong>Basic React Questions<\/strong><\/h3>\n<ol data-sourcepos=\"4:1-5:128\">\n<li data-sourcepos=\"4:1-5:128\">\n<p data-sourcepos=\"4:4-5:158\"><strong>What is React?<\/strong> React is a JavaScript library for building user interfaces. It is based on a component-based architecture and uses a virtual DOM to efficiently update the UI.<\/p>\n<\/li>\n<li data-sourcepos=\"7:1-8:78\">\n<p data-sourcepos=\"7:4-8:78\"><strong>What is JSX?<\/strong> JSX is an extension to JavaScript that allows you to write HTML-like syntax in your JavaScript files. It is used to describe the UI components in React applications.<\/p>\n<\/li>\n<li data-sourcepos=\"10:1-11:25\">\n<p data-sourcepos=\"10:4-11:25\"><strong>What is a component in React?<\/strong> A component is a reusable piece of UI code that encapsulates both its representation and its behavior. Components can be nested within other components to create complex UIs.<\/p>\n<\/li>\n<li data-sourcepos=\"13:1-15:0\">\n<p data-sourcepos=\"13:4-14:135\"><strong>What is the difference between a functional component and a class component?<\/strong> Functional components are simpler and easier to write, while class components offer more flexibility and state management capabilities.<\/p>\n<\/li>\n<li data-sourcepos=\"16:1-18:0\">\n<p data-sourcepos=\"16:4-17:197\"><strong>What is the React lifecycle?<\/strong> The React lifecycle refers to the different phases that a component goes through during its lifetime, from mounting to unmounting. Each phase has specific hooks that can be used to perform actions.<\/p>\n<\/li>\n<li data-sourcepos=\"19:1-20:31\">\n<p data-sourcepos=\"19:4-20:31\"><strong>What is the virtual DOM?<\/strong> The virtual DOM is an in-memory representation of the real DOM. React uses the virtual DOM to efficiently update the UI by comparing the changes between the virtual DOM and the real DOM and applying only the necessary updates.<\/p>\n<\/li>\n<li data-sourcepos=\"22:1-24:0\">\n<p data-sourcepos=\"22:4-23:144\"><strong>What is controlled and uncontrolled components?<\/strong> Controlled components are components whose input values are managed by React state, while uncontrolled components manage their own input values.<\/p>\n<\/li>\n<li data-sourcepos=\"25:1-27:0\">\n<p data-sourcepos=\"25:4-26:133\"><strong>What is props?<\/strong> Props are a way to pass data from a parent component to its child components. They are immutable and should not be modified directly.<\/p>\n<\/li>\n<li data-sourcepos=\"28:1-30:0\">\n<p data-sourcepos=\"28:4-29:157\"><strong>What is state?<\/strong> State is a way to store data that is specific to a component and can be changed over time. State is mutable and can be updated using the <code class=\"\">setState()<\/code> method.<\/p>\n<\/li>\n<\/ol>\n<h3 data-sourcepos=\"31:1-33:114\"><\/h3>\n<h3 data-sourcepos=\"31:1-33:114\"><strong>Intermediate React Questions<\/strong><\/h3>\n<p data-sourcepos=\"31:1-33:114\">\u00a0 10. <strong>What is a key in React?<\/strong> Keys are unique identifiers that help React efficiently identify and\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0track individual elements in a list or array.<\/p>\n<ol start=\"11\" data-sourcepos=\"35:1-41:19\">\n<li data-sourcepos=\"35:1-37:0\">\n<p data-sourcepos=\"35:5-36:115\"><strong>What are higher-order components (HOCs)?<\/strong> HOCs are a way to reuse component logic and create new components that enhance the behavior of existing components.<\/p>\n<\/li>\n<li data-sourcepos=\"38:1-40:0\">\n<p data-sourcepos=\"38:5-39:110\"><strong>What is context in React?<\/strong> Context is a way to share data across components without having to pass props down through the component tree.<\/p>\n<\/li>\n<li data-sourcepos=\"41:1-41:19\">\n<p data-sourcepos=\"41:5-41:19\"><strong>What is a React router?<\/strong> A React router is a library that allows you to manage routing and navigation between different pages in a React application.<\/p>\n<\/li>\n<li data-sourcepos=\"44:1-46:0\">\n<p data-sourcepos=\"44:5-45:111\"><span class=\"citation-0 citation-end-0 animating\"><strong>What are React hooks?<\/strong> React hooks are functions that let you &#8220;hook into&#8221; React state and lifecycle features from function components.<\/span><\/p>\n<\/li>\n<li data-sourcepos=\"47:1-49:0\">\n<p data-sourcepos=\"47:5-48:178\"><strong>What is the difference between <code class=\"\">useState()<\/code> and <code class=\"\">useEffect()<\/code> hooks?<\/strong> The <code class=\"\">useState()<\/code> hook is used to manage local state in a function component, while the <code class=\"\">useEffect()<\/code> hook is used to perform side effects, such as data fetching or subscriptions.<\/p>\n<\/li>\n<\/ol>\n<h3 data-sourcepos=\"50:1-52:170\"><\/h3>\n<h3 data-sourcepos=\"50:1-52:170\"><strong>Advanced React Questions<\/strong><\/h3>\n<p data-sourcepos=\"50:1-52:170\">\u00a0 \u00a016. <strong>What are some performance optimization techniques for React applications?<\/strong> There\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 are several techniques to optimize React performance, such as using <code class=\"\">memoization<\/code>,\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 avoiding unnecessary re-renders, and employing <code class=\"\">PureComponent<\/code> or <code class=\"\">React.memo()<\/code>.<\/p>\n<ol start=\"17\" data-sourcepos=\"54:1-61:93\">\n<li data-sourcepos=\"54:1-56:0\">\n<p data-sourcepos=\"54:5-55:117\"><strong>How can you implement error handling in React applications?<\/strong> React provides error boundaries to handle errors in components and prevent them from crashing the entire application.<\/p>\n<\/li>\n<li data-sourcepos=\"57:1-59:0\">\n<p data-sourcepos=\"57:5-58:89\"><strong>What are some popular React testing frameworks?<\/strong> Jest and React Testing Library are widely used testing frameworks for React applications.<\/p>\n<\/li>\n<li data-sourcepos=\"60:1-61:93\">\n<p data-sourcepos=\"60:5-61:93\"><strong>How can you implement accessibility features in React applications?<\/strong> Aria attributes, semantic HTML elements, and focus management are essential aspects of making React applications accessible to users with disabilities.<\/p>\n<\/li>\n<li data-sourcepos=\"63:1-64:182\">\n<p data-sourcepos=\"63:5-64:182\"><strong>What are some best practices for developing React applications?<\/strong> Following guidelines like using propTypes, writing clean and maintainable code, and employing linting tools are essential practices for developing well-structured React applications.<\/p>\n<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>Here are some React interview questions and answers that cover a wide range of topics, from basic concepts to more advanced techniques. Basic React Questions What is React? React is <span class=\"readmore\"><a href=\"https:\/\/uplatz.com\/blog\/react-interview-questions\/\">Read More &#8230;<\/a><\/span><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[243],"tags":[1484,1480,1477,1481,1479,1482,1478,1302,1483],"class_list":["post-2410","post","type-post","status-publish","format-standard","hentry","category-interview-preparation","tag-full-stack-web-development","tag-practice-react-questions","tag-react","tag-react-faq","tag-react-interview-questions","tag-react-jobs","tag-reactjs","tag-software-developer-interview","tag-web-developer-interview"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>React Interview Questions | Uplatz Blog<\/title>\n<meta name=\"description\" content=\"Practice some common interview questions on React. Test your knowledge of React JavaScript library and crack job interviews.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/uplatz.com\/blog\/react-interview-questions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"React Interview Questions | Uplatz Blog\" \/>\n<meta property=\"og:description\" content=\"Practice some common interview questions on React. Test your knowledge of React JavaScript library and crack job interviews.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/uplatz.com\/blog\/react-interview-questions\/\" \/>\n<meta property=\"og:site_name\" content=\"Uplatz Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Uplatz-1077816825610769\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-22T04:15:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-22T04:46:48+00:00\" \/>\n<meta name=\"author\" content=\"uplatzblog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@uplatz_global\" \/>\n<meta name=\"twitter:site\" content=\"@uplatz_global\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"uplatzblog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/react-interview-questions\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/react-interview-questions\\\/\"},\"author\":{\"name\":\"uplatzblog\",\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/#\\\/schema\\\/person\\\/8ecae69a21d0757bdb2f776e67d2645e\"},\"headline\":\"React Interview Questions\",\"datePublished\":\"2023-11-22T04:15:55+00:00\",\"dateModified\":\"2023-11-22T04:46:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/react-interview-questions\\\/\"},\"wordCount\":609,\"publisher\":{\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/#organization\"},\"keywords\":[\"full stack web development\",\"practice react questions\",\"react\",\"react faq\",\"react interview questions\",\"react jobs\",\"reactjs\",\"software developer interview\",\"web developer interview\"],\"articleSection\":[\"Interview Preparation\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/react-interview-questions\\\/\",\"url\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/react-interview-questions\\\/\",\"name\":\"React Interview Questions | Uplatz Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/#website\"},\"datePublished\":\"2023-11-22T04:15:55+00:00\",\"dateModified\":\"2023-11-22T04:46:48+00:00\",\"description\":\"Practice some common interview questions on React. Test your knowledge of React JavaScript library and crack job interviews.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/react-interview-questions\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/uplatz.com\\\/blog\\\/react-interview-questions\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/react-interview-questions\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"React Interview Questions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/\",\"name\":\"Uplatz Blog\",\"description\":\"Uplatz is a global IT Training &amp; Consulting company\",\"publisher\":{\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/#organization\",\"name\":\"uplatz.com\",\"url\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/11\\\/Uplatz-Logo-Copy-2.png\",\"contentUrl\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/11\\\/Uplatz-Logo-Copy-2.png\",\"width\":1280,\"height\":800,\"caption\":\"uplatz.com\"},\"image\":{\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/Uplatz-1077816825610769\\\/\",\"https:\\\/\\\/x.com\\\/uplatz_global\",\"https:\\\/\\\/www.instagram.com\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/7956715?trk=tyah&amp;amp;amp;amp;trkInfo=clickedVertical:company,clickedEntityId:7956715,idx:1-1-1,tarId:1464353969447,tas:uplatz\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/uplatz.com\\\/blog\\\/#\\\/schema\\\/person\\\/8ecae69a21d0757bdb2f776e67d2645e\",\"name\":\"uplatzblog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7f814c72279199f59ded4418a8653ad15f5f8904ac75e025a4e2abe24d58fa5d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7f814c72279199f59ded4418a8653ad15f5f8904ac75e025a4e2abe24d58fa5d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7f814c72279199f59ded4418a8653ad15f5f8904ac75e025a4e2abe24d58fa5d?s=96&d=mm&r=g\",\"caption\":\"uplatzblog\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"React Interview Questions | Uplatz Blog","description":"Practice some common interview questions on React. Test your knowledge of React JavaScript library and crack job interviews.","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:\/\/uplatz.com\/blog\/react-interview-questions\/","og_locale":"en_US","og_type":"article","og_title":"React Interview Questions | Uplatz Blog","og_description":"Practice some common interview questions on React. Test your knowledge of React JavaScript library and crack job interviews.","og_url":"https:\/\/uplatz.com\/blog\/react-interview-questions\/","og_site_name":"Uplatz Blog","article_publisher":"https:\/\/www.facebook.com\/Uplatz-1077816825610769\/","article_published_time":"2023-11-22T04:15:55+00:00","article_modified_time":"2023-11-22T04:46:48+00:00","author":"uplatzblog","twitter_card":"summary_large_image","twitter_creator":"@uplatz_global","twitter_site":"@uplatz_global","twitter_misc":{"Written by":"uplatzblog","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/uplatz.com\/blog\/react-interview-questions\/#article","isPartOf":{"@id":"https:\/\/uplatz.com\/blog\/react-interview-questions\/"},"author":{"name":"uplatzblog","@id":"https:\/\/uplatz.com\/blog\/#\/schema\/person\/8ecae69a21d0757bdb2f776e67d2645e"},"headline":"React Interview Questions","datePublished":"2023-11-22T04:15:55+00:00","dateModified":"2023-11-22T04:46:48+00:00","mainEntityOfPage":{"@id":"https:\/\/uplatz.com\/blog\/react-interview-questions\/"},"wordCount":609,"publisher":{"@id":"https:\/\/uplatz.com\/blog\/#organization"},"keywords":["full stack web development","practice react questions","react","react faq","react interview questions","react jobs","reactjs","software developer interview","web developer interview"],"articleSection":["Interview Preparation"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/uplatz.com\/blog\/react-interview-questions\/","url":"https:\/\/uplatz.com\/blog\/react-interview-questions\/","name":"React Interview Questions | Uplatz Blog","isPartOf":{"@id":"https:\/\/uplatz.com\/blog\/#website"},"datePublished":"2023-11-22T04:15:55+00:00","dateModified":"2023-11-22T04:46:48+00:00","description":"Practice some common interview questions on React. Test your knowledge of React JavaScript library and crack job interviews.","breadcrumb":{"@id":"https:\/\/uplatz.com\/blog\/react-interview-questions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/uplatz.com\/blog\/react-interview-questions\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/uplatz.com\/blog\/react-interview-questions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/uplatz.com\/blog\/"},{"@type":"ListItem","position":2,"name":"React Interview Questions"}]},{"@type":"WebSite","@id":"https:\/\/uplatz.com\/blog\/#website","url":"https:\/\/uplatz.com\/blog\/","name":"Uplatz Blog","description":"Uplatz is a global IT Training &amp; Consulting company","publisher":{"@id":"https:\/\/uplatz.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/uplatz.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/uplatz.com\/blog\/#organization","name":"uplatz.com","url":"https:\/\/uplatz.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/uplatz.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/uplatz.com\/blog\/wp-content\/uploads\/2016\/11\/Uplatz-Logo-Copy-2.png","contentUrl":"https:\/\/uplatz.com\/blog\/wp-content\/uploads\/2016\/11\/Uplatz-Logo-Copy-2.png","width":1280,"height":800,"caption":"uplatz.com"},"image":{"@id":"https:\/\/uplatz.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Uplatz-1077816825610769\/","https:\/\/x.com\/uplatz_global","https:\/\/www.instagram.com\/","https:\/\/www.linkedin.com\/company\/7956715?trk=tyah&amp;amp;amp;amp;trkInfo=clickedVertical:company,clickedEntityId:7956715,idx:1-1-1,tarId:1464353969447,tas:uplatz"]},{"@type":"Person","@id":"https:\/\/uplatz.com\/blog\/#\/schema\/person\/8ecae69a21d0757bdb2f776e67d2645e","name":"uplatzblog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/7f814c72279199f59ded4418a8653ad15f5f8904ac75e025a4e2abe24d58fa5d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/7f814c72279199f59ded4418a8653ad15f5f8904ac75e025a4e2abe24d58fa5d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7f814c72279199f59ded4418a8653ad15f5f8904ac75e025a4e2abe24d58fa5d?s=96&d=mm&r=g","caption":"uplatzblog"}}]}},"_links":{"self":[{"href":"https:\/\/uplatz.com\/blog\/wp-json\/wp\/v2\/posts\/2410","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/uplatz.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/uplatz.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/uplatz.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/uplatz.com\/blog\/wp-json\/wp\/v2\/comments?post=2410"}],"version-history":[{"count":5,"href":"https:\/\/uplatz.com\/blog\/wp-json\/wp\/v2\/posts\/2410\/revisions"}],"predecessor-version":[{"id":2421,"href":"https:\/\/uplatz.com\/blog\/wp-json\/wp\/v2\/posts\/2410\/revisions\/2421"}],"wp:attachment":[{"href":"https:\/\/uplatz.com\/blog\/wp-json\/wp\/v2\/media?parent=2410"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/uplatz.com\/blog\/wp-json\/wp\/v2\/categories?post=2410"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/uplatz.com\/blog\/wp-json\/wp\/v2\/tags?post=2410"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}