{"id":21887,"date":"2019-09-06T18:19:41","date_gmt":"2019-09-06T10:19:41","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=21887"},"modified":"2019-09-05T19:56:10","modified_gmt":"2019-09-05T11:56:10","slug":"tabular-data-browser-console","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/","title":{"rendered":"How to Display Data as Table in Browser Console"},"content":{"rendered":"<p><strong>Console<\/strong> is a browser built-in tool that logs errors that happens on the website. If there are any errors \u2013 such as broken links, incomplete JavaScript functions, or unknown CSS properties \u2013 the browsers will show error messages within the Console.<\/p>\n<p>On top of that, we can also interact with the Console through the shell and the <a href=\"https:\/\/developer.chrome.com\/docs\/devtools\/\/docs\/console-api\" target=\"_blank\" rel=\"nofollow\">Console API<\/a>, which  comes in useful when testing certain functions and data output. Here, we will show you one handy tip for Console API use.<\/p>\n<p class=\"note\"><strong>Recommended Reading: <\/strong><a href=\"https:\/\/www.hongkiat.com\/blog\/html-table-building-30-beautiful-examples-and-useful-javascripts\/\">HTML Table Building \u2013 30+ Beautiful Examples And Useful Javascripts<\/a><\/p>\n<h2>Accessing the Browser Console<\/h2>\n<p>In Chrome, we can select <strong>View &gt; Developer &gt; JavaScript Console<\/strong> menu to bring up the Console. Alternatively, we can also use the shortcut key: <span class=\"key\">Cmd<\/span> + <span class=\"key\">Option<\/span> + <span class=\"key\">J<\/span> on OS X, and <span class=\"key\">Ctrl<\/span> + <span class=\"key\">Shift<\/span> + <span class=\"key\">J<\/span> on Windows.<\/p>\n<p>Shown below is an error-free Chrome Console.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/tabular-data-browser-console\/console-blank.jpg\" alt=\"console blank\" width=\"500\" height=\"103\"><\/figure>\n<p>From here, we can start using the command provided in <a href=\"https:\/\/developer.chrome.com\/docs\/devtools\/\/docs\/console#using-the-console-api\" rel=\"nofollow\">Console API<\/a>.<\/p>\n<h2>Interacting with the Console<\/h2>\n<p>We can interact with the browser Console through the Console itself and by adding JavaScript within the document. As an example, here we tell the Console to output \u201cGood Morning!\u201d by typing <code>console.log()<\/code> command directly in the Console:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/tabular-data-browser-console\/console-good-morning.jpg\" alt=\"console good morning\" width=\"500\" height=\"131\"><\/figure>\n<p>As mentioned, we can also apply the <code>console.log()<\/code> within the document. One practical <code>console.log()<\/code> use is to test a JavaScript conditional statement. We can see more clearly if the result returns <code>true<\/code> or <code>false<\/code> with the help of <code>console.log()<\/code>.<\/p>\n<p>Below is one example:<\/p>\n<pre>\r\nvar a = 1;\r\nif(a == 1) {\r\n\tconsole.log('true');\r\n} else {\r\n\tconsole.log('false');\r\n}\r\n<\/pre>\n<p>The code above will return true, since the <code>a<\/code> variable contains the number <code>1<\/code>. In the Console you should see the browser output the text <code>true<\/code>.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/tabular-data-browser-console\/console-if-statement.jpg\" alt=\"console if statement\" width=\"500\" height=\"102\"><\/figure>\n<h2>Output Data as a Table<\/h2>\n<p>Sometimes, we would be dealing with an Array of data or a list of Objects, as shown below:<\/p>\n<pre>\r\nvar data = [\r\n\t{ name: \"Andi\", age: \"21\", city: \"Tuban\" },\r\n\t{ name: \"Ani\", age: \"25\", city: \"Trenggalek\" },\r\n\t{ name: \"Adi\", age: \"30\", city: \"Kediri\" }\r\n];\r\nconsole.table(data);\r\n<\/pre>\n<p>This data will be hard to read when we use the <code>console.log()<\/code> method. The <code>console.log()<\/code> method will show the Array in collapsible <em>tree view<\/em>, as shown below.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/tabular-data-browser-console\/console-log-array.jpg\" alt=\"cole log array\" width=\"500\" height=\"200\"><\/figure>\n<p>When we are dealing with such an Array, using <code>console.table()<\/code> is the better way to output it. This method will show data in a table format. Taking the same data as above, it will ouput as:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/tabular-data-browser-console\/console-table.jpg\" alt=\"console table\" width=\"500\" height=\"161\"><\/figure>\n<h2>Conclusion<\/h2>\n<p>The browser Console helps web developers handle errors in websites. We can also use it to test data output, like with the <code>console.log()<\/code> method. When we have an array data <code>console.table()<\/code>command would come in more useful, as it shows the Array in a table format that is easy to read. Do take note that the <code>console.table()<\/code>is only applicable in Webkit-based browsers such as Chrome, Safari, and the latest version of Opera.<\/p>\n<h2>Further Reading<\/h2>\n<ul>\n<li><a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/JavaScript\/Reference\/Global_Objects\/Array\" target=\"_blank\">Basic JavaScript Array<\/a><\/li>\n<li><a href=\"https:\/\/mischah.github.io\/Console-API-Snippets\/\" target=\"_blank\">Console API Snippet for Sublime Text<\/a> <\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>Console is a browser built-in tool that logs errors that happens on the website. If there are any errors \u2013 such as broken links, incomplete JavaScript functions, or unknown CSS properties \u2013 the browsers will show error messages within the Console. On top of that, we can also interact with the Console through the shell&hellip;<\/p>\n","protected":false},"author":141,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[352],"tags":[511],"topic":[4520],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Display Data as Table in Browser Console - Hongkiat<\/title>\n<meta name=\"description\" content=\"Console is a browser built-in tool that logs errors that happens on the website. If there are any errors &ndash; such as broken links, incomplete\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Display Data as Table in Browser Console\" \/>\n<meta property=\"og:description\" content=\"Console is a browser built-in tool that logs errors that happens on the website. If there are any errors &ndash; such as broken links, incomplete\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-06T10:19:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/tabular-data-browser-console\/console-blank.jpg\" \/>\n<meta name=\"author\" content=\"Agus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bagusdesain\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Agus\" \/>\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:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/\"},\"author\":{\"name\":\"Agus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/b23dad06815dff0bcc222088bed549dd\"},\"headline\":\"How to Display Data as Table in Browser Console\",\"datePublished\":\"2019-09-06T10:19:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/\"},\"wordCount\":429,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/tabular-data-browser-console\\\/console-blank.jpg\",\"keywords\":[\"Web Developers\"],\"articleSection\":[\"Web Design\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/\",\"name\":\"How to Display Data as Table in Browser Console - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/tabular-data-browser-console\\\/console-blank.jpg\",\"datePublished\":\"2019-09-06T10:19:41+00:00\",\"description\":\"Console is a browser built-in tool that logs errors that happens on the website. If there are any errors &ndash; such as broken links, incomplete\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/tabular-data-browser-console\\\/console-blank.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/tabular-data-browser-console\\\/console-blank.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/tabular-data-browser-console\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Display Data as Table in Browser Console\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/b23dad06815dff0bcc222088bed549dd\",\"name\":\"Agus\",\"description\":\"Agus is a music enthusiast, backpacker and code writer. He has an ambition to build a Skynet on top of HTML and CSS.\",\"sameAs\":[\"https:\\\/\\\/x.com\\\/bagusdesain\"],\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/agus\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Display Data as Table in Browser Console - Hongkiat","description":"Console is a browser built-in tool that logs errors that happens on the website. If there are any errors &ndash; such as broken links, incomplete","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:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/","og_locale":"en_US","og_type":"article","og_title":"How to Display Data as Table in Browser Console","og_description":"Console is a browser built-in tool that logs errors that happens on the website. If there are any errors &ndash; such as broken links, incomplete","og_url":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2019-09-06T10:19:41+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/tabular-data-browser-console\/console-blank.jpg","type":"","width":"","height":""}],"author":"Agus","twitter_card":"summary_large_image","twitter_creator":"@bagusdesain","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Agus","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/"},"author":{"name":"Agus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/b23dad06815dff0bcc222088bed549dd"},"headline":"How to Display Data as Table in Browser Console","datePublished":"2019-09-06T10:19:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/"},"wordCount":429,"commentCount":4,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/tabular-data-browser-console\/console-blank.jpg","keywords":["Web Developers"],"articleSection":["Web Design"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/","url":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/","name":"How to Display Data as Table in Browser Console - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/tabular-data-browser-console\/console-blank.jpg","datePublished":"2019-09-06T10:19:41+00:00","description":"Console is a browser built-in tool that logs errors that happens on the website. If there are any errors &ndash; such as broken links, incomplete","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/tabular-data-browser-console\/console-blank.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/tabular-data-browser-console\/console-blank.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/tabular-data-browser-console\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Display Data as Table in Browser Console"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/b23dad06815dff0bcc222088bed549dd","name":"Agus","description":"Agus is a music enthusiast, backpacker and code writer. He has an ambition to build a Skynet on top of HTML and CSS.","sameAs":["https:\/\/x.com\/bagusdesain"],"url":"https:\/\/www.hongkiat.com\/blog\/author\/agus\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-5H1","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/21887","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/141"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=21887"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/21887\/revisions"}],"predecessor-version":[{"id":48631,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/21887\/revisions\/48631"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=21887"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=21887"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=21887"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=21887"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}