{"id":306,"date":"2023-03-07T18:50:08","date_gmt":"2023-03-07T18:50:08","guid":{"rendered":"https:\/\/jassweb.com\/new22\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed\/"},"modified":"2023-03-07T18:50:08","modified_gmt":"2023-03-07T18:50:08","slug":"solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/","title":{"rendered":"[Solved] Javascript \u2013 print all names in array containing multiple objects [closed]"},"content":{"rendered":"<h2> Introduction <\/h2>\n<p>[ad_1]<\/p>\n<p>Javascript is a powerful programming language that can be used to manipulate data in a variety of ways. In this tutorial, we will be looking at how to print all names in an array containing multiple objects. We will be using the forEach() method to iterate through the array and print out each name. We will also be discussing how to access the properties of each object in the array. By the end of this tutorial, you should have a better understanding of how to work with arrays containing multiple objects in Javascript.<\/p>\n<h2> Solution<\/h2>\n<p><\/p>\n<p>\/\/ Using a for loop<\/p>\n<p>let arr = [<br \/>\n  {name: &#8216;John&#8217;, age: 25},<br \/>\n  {name: &#8216;Jane&#8217;, age: 22},<br \/>\n  {name: &#8216;Bob&#8217;, age: 27}<br \/>\n];<\/p>\n<p>for (let i = 0; i < arr.length; i++) {\n  console.log(arr[i].name);\n}\n\n\/\/ Using forEach\n\narr.forEach(person => {<br \/>\n  console.log(person.name);<br \/>\n}); <\/p>\n<p><\/p>\n<div class=\"entry-content\" itemprop=\"text\">\n<script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-1088640234840270\" crossorigin=\"anonymous\"><\/script><br \/>\n<script><\/p>\n<p><\/script><\/p>\n<p><\/p>\n<div id=\"answer-57918443\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"57918443\" data-parentid=\"57918374\" data-score=\"-1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<ol>\n<li>Extract only the students with grade 80 or higher with <code>Array.filter<\/code>.<\/li>\n<li>Map the remaining students into a new format using <code>Array.map<\/code>.<\/li>\n<\/ol>\n<p>Result:<\/p>\n<div class=\"snippet\" data-lang=\"js\" data-hide=\"false\" data-console=\"true\" data-babel=\"true\">\n<div class=\"snippet-code\">\n<pre class=\"snippet-code-js lang-js prettyprint-override\"><code>let students = [{\n  fname: \"Jane\",\n  lname: \"Brazier\",\n  snum: \"100366942\",\n  agrade: 67.59127376966494,\n  tgrade: 64.86530868914188,\n  egrade: 70.52944558104066\n}, {\n  fname: \"Ricardo\",\n  lname: \"Allen\",\n  snum: \"100345641\",\n  agrade: 65.80370345301014,\n  tgrade: 75.40211705841241,\n  egrade: 55.39348896202821\n}, {\n  fname: \"Mary\",\n  lname: \"Hernandez\",\n  snum: \"100221207\",\n  agrade: 71.20761408935981,\n  tgrade: 71.37529197926764,\n  egrade: 75.82038980457698\n}, {\n  fname: \"James\",\n  lname: \"Johnson\",\n  snum: \"100200842\",\n  agrade: 72.5791318299902,\n  tgrade: 81.65883679807183,\n  egrade: 85.19664228946989\n}, {\n  fname: \"Stephanie\",\n  lname: \"Ottesen\",\n  snum: \"100225067\",\n  agrade: 88.19738810849226,\n  tgrade: 84.68339894849353,\n  egrade: 82.23947265645927\n}, {\n  fname: \"Martin\",\n  lname: \"Conway\",\n  snum: \"100358379\",\n  agrade: 71.28759059295344,\n  tgrade: 79.13194908266965,\n  egrade: 77.61880623797336\n}, {\n  fname: \"Andrew\",\n  lname: \"Weaver\",\n  snum: \"100376243\",\n  agrade: 70.01798139244363,\n  tgrade: 78.64811561086252,\n  egrade: 78.68650242850617\n}, {\n  fname: \"Rhonda\",\n  lname: \"Ford\",\n  snum: \"100296902\",\n  agrade: 56.14580882764524,\n  tgrade: 63.9209865108888,\n  egrade: 60.186613967770334\n}, {\n  fname: \"Leonard\",\n  lname: \"Arvan\",\n  snum: \"100220616\",\n  agrade: 80.67865525396981,\n  tgrade: 92.73557717342663,\n  egrade: 88.32126970338336\n}, {\n  fname: \"William\",\n  lname: \"Culler\",\n  snum: \"100307637\",\n  agrade: 65.75251699043244,\n  tgrade: 62.18172136246404,\n  egrade: 63.065185542933094\n}, {\n  fname: \"David\",\n  lname: \"Nakasone\",\n  snum: \"100353719\",\n  agrade: 62.63260239883763,\n  tgrade: 58.352794766947866,\n  egrade: 59.80461902691901\n}, {\n  fname: \"Maria\",\n  lname: \"Young\",\n  snum: \"100311331\",\n  agrade: 70.13767021264486,\n  tgrade: 76.09348747016176,\n  egrade: 79.99207130929622\n}, {\n  fname: \"Beverly\",\n  lname: \"Mott\",\n  snum: \"100325579\",\n  agrade: 83.08140516644137,\n  tgrade: 94.80666640692787,\n  egrade: 85.15875656837004\n}, {\n  fname: \"Patrick\",\n  lname: \"Francis\",\n  snum: \"100257773\",\n  agrade: 66.79534616079296,\n  tgrade: 47.744928296560076,\n  egrade: 64.05723052865763\n}, {\n  fname: \"Tracy\",\n  lname: \"Bonds\",\n  snum: \"100233277\",\n  agrade: 70.2289028670531,\n  tgrade: 65.32258294210156,\n  egrade: 77.04816321925091\n}, {\n  fname: \"Richard\",\n  lname: \"Akers\",\n  snum: \"100216705\",\n  agrade: 52.446722363991015,\n  tgrade: 49.205597783687374,\n  egrade: 53.72940974941982\n}, {\n  fname: \"Beatrice\",\n  lname: \"Jaco\",\n  snum: \"100233935\",\n  agrade: 81.89338938644417,\n  tgrade: 71.05459078971688,\n  egrade: 83.08235397281308\n}, {\n  fname: \"Guy\",\n  lname: \"Wendelin\",\n  snum: \"100336379\",\n  agrade: 68.17788319655493,\n  tgrade: 63.82273085525137,\n  egrade: 68.31559946786807\n}, {\n  fname: \"Logan\",\n  lname: \"Olsen\",\n  snum: \"100265736\",\n  agrade: 59.89037739094347,\n  tgrade: 71.76550299333657,\n  egrade: 64.61665695830132\n}, {\n  fname: \"Gene\",\n  lname: \"Jeanlouis\",\n  snum: \"100341666\",\n  agrade: 74.16481515505846,\n  tgrade: 68.20592386917109,\n  egrade: 78.25975050135006\n}];\n\nconst result = students\n  .filter(student =&gt; student.egrade &gt;= 80)\n  .map(student =&gt; `${student.fname} ${student.lname}`);\n  \nconsole.log(result);<\/code><\/pre>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p> <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p>\n<\/div>\n<\/div>\n<p>solved Javascript \u2013 print all names in array containing multiple objects [closed] <\/p>\n<p><script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-1088640234840270\" crossorigin=\"anonymous\"><\/script><br \/>\n<script><\/p>\n<p><\/script><\/div>\n<p>[ad_2]<\/p>\n<p>If you have an array containing multiple objects and you want to print all the names in the array, you can use the following JavaScript code:<\/p>\n<pre><code>var array = [\n    {name: 'John', age: 25},\n    {name: 'Jane', age: 30},\n    {name: 'Bob', age: 40}\n];\n\narray.forEach(function(item) {\n    console.log(item.name);\n});\n<\/code><\/pre>\n<p>This code will loop through the array and print out the name of each object. The output will be:<\/p>\n<pre><code>John\nJane\nBob\n<\/code><\/pre>\n<p>This code can be used to print out any property of the objects in the array, not just the name.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction [ad_1] Javascript is a powerful programming language that can be used to manipulate data in a variety of ways. In this tutorial, we will be looking at how to print all names in an array containing multiple objects. We will be using the forEach() method to iterate through the array and print out each &#8230; <a title=\"[Solved] Javascript \u2013 print all names in array containing multiple objects [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/\" aria-label=\"More on [Solved] Javascript \u2013 print all names in array containing multiple objects [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[361,834,333],"class_list":["post-306","post","type-post","status-publish","format-standard","hentry","category-solved","tag-arrays","tag-dictionary","tag-javascript"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Javascript \u2013 print all names in array containing multiple objects [closed] - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Javascript \u2013 print all names in array containing multiple objects [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"Introduction [ad_1] Javascript is a powerful programming language that can be used to manipulate data in a variety of ways. In this tutorial, we will be looking at how to print all names in an array containing multiple objects. We will be using the forEach() method to iterate through the array and print out each ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-07T18:50:08+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Javascript \u2013 print all names in array containing multiple objects [closed]\",\"datePublished\":\"2023-03-07T18:50:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/\"},\"wordCount\":239,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"arrays\",\"dictionary\",\"javascript\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/\",\"name\":\"[Solved] Javascript \u2013 print all names in array containing multiple objects [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2023-03-07T18:50:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Javascript \u2013 print all names in array containing multiple objects [closed]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Javascript \u2013 print all names in array containing multiple objects [closed] - JassWeb","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:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Javascript \u2013 print all names in array containing multiple objects [closed] - JassWeb","og_description":"Introduction [ad_1] Javascript is a powerful programming language that can be used to manipulate data in a variety of ways. In this tutorial, we will be looking at how to print all names in an array containing multiple objects. We will be using the forEach() method to iterate through the array and print out each ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/","og_site_name":"JassWeb","article_published_time":"2023-03-07T18:50:08+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Javascript \u2013 print all names in array containing multiple objects [closed]","datePublished":"2023-03-07T18:50:08+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/"},"wordCount":239,"commentCount":0,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["arrays","dictionary","javascript"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/","url":"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/","name":"[Solved] Javascript \u2013 print all names in array containing multiple objects [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2023-03-07T18:50:08+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-javascript-print-all-names-in-array-containing-multiple-objects-closed-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Javascript \u2013 print all names in array containing multiple objects [closed]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/306","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=306"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/306\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=306"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=306"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=306"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}