{"id":3456,"date":"2019-12-05T09:04:45","date_gmt":"2019-12-05T03:34:45","guid":{"rendered":"https:\/\/www.sanjaywebdesigner.com\/articles\/?p=3456"},"modified":"2019-12-05T09:04:45","modified_gmt":"2019-12-05T03:34:45","slug":"simple-step-by-step-javascript-calculator","status":"publish","type":"post","link":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/","title":{"rendered":"Simple Step By Step Javascript Calculator"},"content":{"rendered":"<div class=\"4b5c905834746893f548144bd2becc18\" data-index=\"1\" style=\"float: none; margin:10px 0 10px 0; text-align:center;\">\n<script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script>\r\n<!-- blog last -->\r\n<ins class=\"adsbygoogle\"\r\n     style=\"display:inline-block;width:336px;height:280px\"\r\n     data-ad-client=\"ca-pub-8831529092902674\"\r\n     data-ad-slot=\"8814291746\"><\/ins>\r\n<script>\r\n(adsbygoogle = window.adsbygoogle || []).push({});\r\n<\/script>\n<\/div>\n<h1><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3457\" src=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif\" alt=\"Simple Step By Step Javascript Calculator\" width=\"718\" height=\"396\" \/><\/h1>\n<h2>HTML Code<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head lang=\"en\"&gt;\r\n    &lt;meta charset=\"UTF-8\"&gt;\r\n    &lt;title&gt;&lt;\/title&gt;\r\n    &lt;script src=\"js\/calcmodel.js\"&gt;&lt;\/script&gt;\r\n    &lt;script src=\"js\/calccontroller.js\"&gt;&lt;\/script&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n&lt;input type=\"text\"  id=\"firstNo\" placeholder=\"Type First Number\"\/&gt;\r\n&lt;input type=\"text\"  id=\"secondNo\" placeholder=\"Type Second Number\"\/&gt;\r\n&lt;button id=\"addBt\" data-operation=\"+\"&gt;Add&lt;\/button&gt;\r\n&lt;button id=\"subtractBt\" data-operation=\"-\"&gt;Subtract&lt;\/button&gt;\r\n&lt;button id=\"mulBt\" data-operation=\"*\"&gt;Multiply&lt;\/button&gt;\r\n&lt;button id=\"divBt\" data-operation=\"\/\"&gt;Divide&lt;\/button&gt;\r\n&lt;h1&gt;Result is &lt;span id=\"result\"&gt;&lt;\/span&gt;&lt;\/h1&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h2>In Js Folder calcmodel.js<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">var calcObject = {\r\nadd:function (x,y){\r\n    return parseInt(x) + parseInt(y);\r\n},\r\nsubtract :function (x,y){\r\n    return x-y;\r\n}\r\n}\r\n<\/pre>\n<p>In Js Folder calccontroller.js<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">window.addEventListener(\"load\",init);\r\nfunction init(){\r\n    \/*document.getElementById(\"addBt\").addEventListener(\"click\",doOperation);\r\n    document.getElementById(\"subtractBt\").addEventListener(\"click\",doOperation);*\/\r\n    var buttonArray = document.getElementsByTagName(\"button\");\r\n    for(var i = 0 ; i&lt;buttonArray.length; i++){\r\n        buttonArray[i].addEventListener(\"click\",doOperation);\r\n    }\r\n}\r\nfunction doOperation(event){\r\n    var result =0;\r\n    var firstNo = document.getElementById(\"firstNo\").value;\r\n    var secondNo = document.getElementById(\"secondNo\").value;\r\n    \/\/var operation = this.getAttribute(\"data-operation\");\r\n    var operation = event.srcElement.getAttribute(\"data-operation\");\r\n\r\n    \/\/result = calcObject[this.getAttribute(\"data-operation\")](firstNo,secondNo);\r\n    var expression = firstNo + operation + secondNo;\r\n    result = eval(expression);\r\n    console.log(\"Expression is \",expression);\r\n    \/*if(this.innerHTML===\"Add\"){\r\n     result = calcObject.add(firstNo,secondNo);\r\n    }\r\n    else\r\n    if(this.innerHTML===\"Subtract\"){\r\n        result = calcObject.subtract(firstNo,secondNo);\r\n    }*\/\r\n    document.getElementById(\"result\").innerHTML=result;\r\n}\r\n\/*function addLogic(){\r\n    var firstNo = document.getElementById(\"firstNo\").value;\r\n    var secondNo = document.getElementById(\"secondNo\").value;\r\n    var result = add(firstNo,secondNo);\r\n    document.getElementById(\"result\").innerHTML=result;\r\n}\r\nfunction subtractLogic(){\r\n    var firstNo = document.getElementById(\"firstNo\").value;\r\n    var secondNo = document.getElementById(\"secondNo\").value;\r\n    var result = subtract(firstNo,secondNo);\r\n    document.getElementById(\"result\").innerHTML=result;\r\n}*\/\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n\n<div style=\"font-size: 0px; height: 0px; line-height: 0px; margin: 0; padding: 0; clear: both;\"><\/div>","protected":false},"excerpt":{"rendered":"<p>HTML Code &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head lang=&#8221;en&#8221;&gt; &lt;meta charset=&#8221;UTF-8&#8243;&gt; &lt;title&gt;&lt;\/title&gt; &lt;script src=&#8221;js\/calcmodel.js&#8221;&gt;&lt;\/script&gt; &lt;script src=&#8221;js\/calccontroller.js&#8221;&gt;&lt;\/script&gt; &lt;\/head&gt; &lt;body&gt; &lt;input type=&#8221;text&#8221; id=&#8221;firstNo&#8221; placeholder=&#8221;Type First Number&#8221;\/&gt; &lt;input type=&#8221;text&#8221; id=&#8221;secondNo&#8221; placeholder=&#8221;Type Second Number&#8221;\/&gt; &lt;button id=&#8221;addBt&#8221; data-operation=&#8221;+&#8221;&gt;Add&lt;\/button&gt; &lt;button id=&#8221;subtractBt&#8221; data-operation=&#8221;-&#8220;&gt;Subtract&lt;\/button&gt; &lt;button id=&#8221;mulBt&#8221; data-operation=&#8221;*&#8221;&gt;Multiply&lt;\/button&gt; &lt;button id=&#8221;divBt&#8221; data-operation=&#8221;\/&#8221;&gt;Divide&lt;\/button&gt; &lt;h1&gt;Result is &lt;span id=&#8221;result&#8221;&gt;&lt;\/span&gt;&lt;\/h1&gt; &lt;\/body&gt; &lt;\/html&gt; In Js Folder calcmodel.js var calcObject = { add:function [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3457,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20,1076],"tags":[1247,1248,1249],"class_list":["post-3456","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-web-design-courses-in-delhi-2","category-web-development-tutorials","tag-simple-step-by-step-javascript-calculator","tag-simple-step-by-step-javascript-calculator-in-delhi","tag-simple-step-by-step-javascript-calculator-in-india"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Simple Step By Step Javascript Calculator<\/title>\n<meta name=\"description\" content=\"Simple Step By Step Javascript Calculator in Delhi and India\" \/>\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.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Simple Step By Step Javascript Calculator\" \/>\n<meta property=\"og:description\" content=\"Simple Step By Step Javascript Calculator\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/\" \/>\n<meta property=\"og:site_name\" content=\"Sanjay Web Designer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/sanjaywebdesigner\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/sanjay73jain\" \/>\n<meta property=\"article:published_time\" content=\"2019-12-05T03:34:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif\" \/>\n\t<meta property=\"og:image:width\" content=\"718\" \/>\n\t<meta property=\"og:image:height\" content=\"396\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/gif\" \/>\n<meta name=\"author\" content=\"Sanjay Jain\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Simple Step By Step Javascript Calculator\" \/>\n<meta name=\"twitter:description\" content=\"Simple Step By Step Javascript Calculator\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/sanjaywebdesign\" \/>\n<meta name=\"twitter:site\" content=\"@sanjaywebdesign\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sanjay Jain\" \/>\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.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/\"},\"author\":{\"name\":\"Sanjay Jain\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/7f15927dca46fba8128eebb678a0ae41\"},\"headline\":\"Simple Step By Step Javascript Calculator\",\"datePublished\":\"2019-12-05T03:34:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/\"},\"wordCount\":20,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif\",\"keywords\":[\"Simple Step By Step Javascript Calculator\",\"Simple Step By Step Javascript Calculator in Delhi\",\"Simple Step By Step Javascript Calculator in India\"],\"articleSection\":[\"Web Designing Courses\",\"Web Development Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/\",\"name\":\"Simple Step By Step Javascript Calculator\",\"isPartOf\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif\",\"datePublished\":\"2019-12-05T03:34:45+00:00\",\"description\":\"Simple Step By Step Javascript Calculator in Delhi and India\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/#primaryimage\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif\",\"contentUrl\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif\",\"width\":718,\"height\":396,\"caption\":\"Simple Step By Step Javascript Calculator\"},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#website\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/\",\"name\":\"Sanjay Web Designer\",\"description\":\"Learn Web Designing &amp; Graphic Designing in Depth\",\"publisher\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization\",\"name\":\"Sanjay Web Designer\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2021\/08\/cropped-footer-logo-1.png\",\"contentUrl\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2021\/08\/cropped-footer-logo-1.png\",\"width\":240,\"height\":72,\"caption\":\"Sanjay Web Designer\"},\"image\":{\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/sanjaywebdesigner\",\"https:\/\/x.com\/sanjaywebdesign\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/7f15927dca46fba8128eebb678a0ae41\",\"name\":\"Sanjay Jain\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e80a626482bdb2e323343f4f015bc61d8655097da7dd1e684b2e2facb0b8c833?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e80a626482bdb2e323343f4f015bc61d8655097da7dd1e684b2e2facb0b8c833?s=96&d=mm&r=g\",\"caption\":\"Sanjay Jain\"},\"description\":\"I am a graphic and web designer in Delhi and Professional Web and Graphics Designer &amp; Animator. I provide SEO Service in Delhi along with SEO, Web and Graphics Designing Courses training with latest technique.\",\"sameAs\":[\"http:\/\/www.sanjaywebdesigner.com\",\"https:\/\/www.facebook.com\/sanjay73jain\",\"http:\/\/www.linkedin.com\/company\/sanjay-web-designer\",\"https:\/\/x.com\/https:\/\/twitter.com\/sanjaywebdesign\",\"https:\/\/www.youtube.com\/channel\/UCbBRE3GjyAhf1qd6nHg-vQw\",\"http:\/\/sanjaywebdesigner.tumblr.com\/\"],\"url\":\"https:\/\/www.sanjaywebdesigner.com\/articles\/author\/sanjaywe\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Simple Step By Step Javascript Calculator","description":"Simple Step By Step Javascript Calculator in Delhi and India","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.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/","og_locale":"en_US","og_type":"article","og_title":"Simple Step By Step Javascript Calculator","og_description":"Simple Step By Step Javascript Calculator","og_url":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/","og_site_name":"Sanjay Web Designer","article_publisher":"https:\/\/www.facebook.com\/sanjaywebdesigner","article_author":"https:\/\/www.facebook.com\/sanjay73jain","article_published_time":"2019-12-05T03:34:45+00:00","og_image":[{"width":718,"height":396,"url":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif","type":"image\/gif"}],"author":"Sanjay Jain","twitter_card":"summary_large_image","twitter_title":"Simple Step By Step Javascript Calculator","twitter_description":"Simple Step By Step Javascript Calculator","twitter_image":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif","twitter_creator":"@https:\/\/twitter.com\/sanjaywebdesign","twitter_site":"@sanjaywebdesign","twitter_misc":{"Written by":"Sanjay Jain","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/#article","isPartOf":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/"},"author":{"name":"Sanjay Jain","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/7f15927dca46fba8128eebb678a0ae41"},"headline":"Simple Step By Step Javascript Calculator","datePublished":"2019-12-05T03:34:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/"},"wordCount":20,"commentCount":0,"publisher":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization"},"image":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif","keywords":["Simple Step By Step Javascript Calculator","Simple Step By Step Javascript Calculator in Delhi","Simple Step By Step Javascript Calculator in India"],"articleSection":["Web Designing Courses","Web Development Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/","name":"Simple Step By Step Javascript Calculator","isPartOf":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/#primaryimage"},"image":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif","datePublished":"2019-12-05T03:34:45+00:00","description":"Simple Step By Step Javascript Calculator in Delhi and India","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/simple-step-by-step-javascript-calculator\/#primaryimage","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif","contentUrl":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2019\/12\/best-simple-step-by-step-javascript-calculator.gif","width":718,"height":396,"caption":"Simple Step By Step Javascript Calculator"},{"@type":"WebSite","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#website","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/","name":"Sanjay Web Designer","description":"Learn Web Designing &amp; Graphic Designing in Depth","publisher":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sanjaywebdesigner.com\/articles\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#organization","name":"Sanjay Web Designer","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/logo\/image\/","url":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2021\/08\/cropped-footer-logo-1.png","contentUrl":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-content\/uploads\/2021\/08\/cropped-footer-logo-1.png","width":240,"height":72,"caption":"Sanjay Web Designer"},"image":{"@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/sanjaywebdesigner","https:\/\/x.com\/sanjaywebdesign"]},{"@type":"Person","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/7f15927dca46fba8128eebb678a0ae41","name":"Sanjay Jain","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sanjaywebdesigner.com\/articles\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e80a626482bdb2e323343f4f015bc61d8655097da7dd1e684b2e2facb0b8c833?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e80a626482bdb2e323343f4f015bc61d8655097da7dd1e684b2e2facb0b8c833?s=96&d=mm&r=g","caption":"Sanjay Jain"},"description":"I am a graphic and web designer in Delhi and Professional Web and Graphics Designer &amp; Animator. I provide SEO Service in Delhi along with SEO, Web and Graphics Designing Courses training with latest technique.","sameAs":["http:\/\/www.sanjaywebdesigner.com","https:\/\/www.facebook.com\/sanjay73jain","http:\/\/www.linkedin.com\/company\/sanjay-web-designer","https:\/\/x.com\/https:\/\/twitter.com\/sanjaywebdesign","https:\/\/www.youtube.com\/channel\/UCbBRE3GjyAhf1qd6nHg-vQw","http:\/\/sanjaywebdesigner.tumblr.com\/"],"url":"https:\/\/www.sanjaywebdesigner.com\/articles\/author\/sanjaywe\/"}]}},"_links":{"self":[{"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/posts\/3456","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/comments?post=3456"}],"version-history":[{"count":0,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/posts\/3456\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/media\/3457"}],"wp:attachment":[{"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/media?parent=3456"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/categories?post=3456"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sanjaywebdesigner.com\/articles\/wp-json\/wp\/v2\/tags?post=3456"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}