{"id":217,"date":"2020-12-09T02:42:20","date_gmt":"2020-12-09T02:42:20","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=217"},"modified":"2021-05-31T05:31:02","modified_gmt":"2021-05-31T04:31:02","slug":"debugging-your-javascript-code-using-the-browser-console","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/","title":{"rendered":"Debugging Your Javascript Code"},"content":{"rendered":"\n<p>Web browsers generally have consoles, which are interactive command lines where you can print text and test pieces of code. <\/p>\n\n\n\n<p>This is where, for the most part, you&#8217;ll be debugging your javascript code and checking out for errors.<\/p>\n\n\n\n<p class=\"has-large-font-size\"><strong>How To Open The Console<\/strong><\/p>\n\n\n\n<p>To open up the console for any browser.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>right-click on your webpage and choose &#8220;inspect&#8221; or &#8220;inspect element&#8221; if you&#8217;re on Safari browser.<\/li><\/ol>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"334\" height=\"307\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/Screenshot-2020-12-09-at-02.58.25.png\" alt=\"\" class=\"wp-image-218\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/Screenshot-2020-12-09-at-02.58.25.png 334w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/Screenshot-2020-12-09-at-02.58.25-300x276.png 300w\" sizes=\"auto, (max-width: 334px) 100vw, 334px\" \/><figcaption>A Google Chrome illustration<\/figcaption><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"269\" height=\"215\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/Screenshot-2020-12-09-at-03.00.41.png\" alt=\"\" class=\"wp-image-219\"\/><figcaption>A Safari illustration<\/figcaption><\/figure>\n\n\n\n<p>2. Next, select console<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"548\" height=\"437\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/Screenshot-2020-12-09-at-03.02.12.png\" alt=\"\" class=\"wp-image-220\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/Screenshot-2020-12-09-at-03.02.12.png 548w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/Screenshot-2020-12-09-at-03.02.12-300x239.png 300w\" sizes=\"auto, (max-width: 548px) 100vw, 548px\" \/><figcaption>A Google Chrome console illustration<\/figcaption><\/figure>\n\n\n\n<p class=\"has-large-font-size\"><strong>Printing Values Using console.log()<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">console.log(\"Hello\");\nconsole.log(\"This is the browser console\");\n\n\/\/Output:\n\/\/Hello\n\/\/This is a browser console<\/code><\/pre>\n\n\n\n<p class=\"has-large-font-size\"><strong>Printing Multiple Values<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">console.log('abc', 123, true);\n\/\/Output\n\/\/abc 123 true<\/code><\/pre>\n\n\n\n<p class=\"has-large-font-size\"><strong>Printing Strings With Substitutions<\/strong><\/p>\n\n\n\n<p>Here are some directives you can use for your substitutions:<\/p>\n\n\n\n<p><strong>%s: <\/strong>converts the corresponding value to a string and inserts it<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">console.log('Value: %s %s', 123, 'abc');\n\n\/\/Output\n\/\/123 abc<\/code><\/pre>\n\n\n\n<p><strong>%o<\/strong>: inserts a string representation of an object<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">console.log('%o', {foo: 123, bar: 'abc'});<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"191\" height=\"65\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/Screenshot-2020-12-09-at-03.22.23.png\" alt=\"\" class=\"wp-image-222\"\/><figcaption>A snapshot of the result of the above program<\/figcaption><\/figure>\n\n\n\n<p>Notice that result is an object.<\/p>\n\n\n\n<p><strong>%j<\/strong>: converts a value to a JSON string and inserts it<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">console.log('%j', {foo: 123, bar: 'abc'});<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"191\" height=\"65\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/Screenshot-2020-12-09-at-03.22.23-1.png\" alt=\"\" class=\"wp-image-223\"\/><figcaption>A snapshot of the result of the above program<\/figcaption><\/figure>\n\n\n\n<p><strong>%%:<\/strong> inserts a single %<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">console.log('%s%%', 100);\n\n\/\/Output\n\/\/ 100%<\/code><\/pre>\n\n\n\n<p class=\"has-large-font-size\"><strong>Printing Error Information Using console.error()<\/strong><\/p>\n\n\n\n<p>console.error() works typically the same way as console.log(), but what it logs is considered error information.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Web browsers generally have consoles, which are interactive command lines where you can print text and test pieces<\/p>\n","protected":false},"author":1,"featured_media":224,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[11],"tags":[61,63,62,5],"class_list":["post-217","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript","tag-browser-consoles","tag-console-error","tag-console-log","tag-javascript"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Debugging Your Javascript Code<\/title>\n<meta name=\"description\" content=\"Web browsers generally have consoles, which are interactive command lines where you can print text and test pieces of code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Debugging Your Javascript Code\" \/>\n<meta property=\"og:description\" content=\"Web browsers generally have consoles, which are interactive command lines where you can print text and test pieces of code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-09T02:42:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-31T04:31:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/javas.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"Debugging Your Javascript Code\",\"datePublished\":\"2020-12-09T02:42:20+00:00\",\"dateModified\":\"2021-05-31T04:31:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/\"},\"wordCount\":188,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/javas.jpg\",\"keywords\":[\"browser consoles\",\"console.error\",\"console.log\",\"Javascript\"],\"articleSection\":[\"javascript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/\",\"name\":\"Debugging Your Javascript Code\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/javas.jpg\",\"datePublished\":\"2020-12-09T02:42:20+00:00\",\"dateModified\":\"2021-05-31T04:31:02+00:00\",\"description\":\"Web browsers generally have consoles, which are interactive command lines where you can print text and test pieces of code.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/javas.jpg\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/javas.jpg\",\"width\":1280,\"height\":720,\"caption\":\"software development training in abuja\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/debugging-your-javascript-code-using-the-browser-console\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Uncategorized\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/uncategorized\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Debugging Your Javascript Code\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Debugging Your Javascript Code","description":"Web browsers generally have consoles, which are interactive command lines where you can print text and test pieces of code.","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:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/","og_locale":"en_US","og_type":"article","og_title":"Debugging Your Javascript Code","og_description":"Web browsers generally have consoles, which are interactive command lines where you can print text and test pieces of code.","og_url":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2020-12-09T02:42:20+00:00","article_modified_time":"2021-05-31T04:31:02+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/javas.jpg","type":"image\/jpeg"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"Debugging Your Javascript Code","datePublished":"2020-12-09T02:42:20+00:00","dateModified":"2021-05-31T04:31:02+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/"},"wordCount":188,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/javas.jpg","keywords":["browser consoles","console.error","console.log","Javascript"],"articleSection":["javascript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/","url":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/","name":"Debugging Your Javascript Code","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/javas.jpg","datePublished":"2020-12-09T02:42:20+00:00","dateModified":"2021-05-31T04:31:02+00:00","description":"Web browsers generally have consoles, which are interactive command lines where you can print text and test pieces of code.","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/javas.jpg","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/javas.jpg","width":1280,"height":720,"caption":"software development training in abuja"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/debugging-your-javascript-code-using-the-browser-console\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Uncategorized","item":"https:\/\/codeflarelimited.com\/blog\/uncategorized\/"},{"@type":"ListItem","position":3,"name":"Debugging Your Javascript Code"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/12\/javas.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/217","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=217"}],"version-history":[{"count":6,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/217\/revisions"}],"predecessor-version":[{"id":653,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/217\/revisions\/653"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/224"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=217"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=217"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=217"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}