{"id":4631,"date":"2015-06-23T12:15:51","date_gmt":"2015-06-23T09:15:51","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=4631"},"modified":"2018-01-10T15:26:05","modified_gmt":"2018-01-10T13:26:05","slug":"javascript-evalexample","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/","title":{"rendered":"Javascript Eval Example"},"content":{"rendered":"<p>The <code>eval()<\/code> function is one of the most discussed by JavaScript developers, most of them call it &#8220;evil&#8221; (such as <a href=\"http:\/\/archive.oreilly.com\/pub\/a\/javascript\/excerpts\/javascript-good-parts\/jslint.html\" target=\"_blank\">Douglas Crockford<\/a>), who coined the saying &#8220;eval() is evil&#8221;. But what most programmers fail to see is it&#8217;s potential when used properly. Take a look!<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n[ulp id=&#8217;tCIwOngQUb3zSUuF&#8217;]<\/p>\n<h2>What is eval()?<\/h2>\n<p><code>eval()<\/code> is a function that takes a string that contains valid Javascript code as a parameter, and executes it.<\/p>\n<p>It&#8217;s syntax is like this:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\neval(string);\r\n<\/pre>\n<p>Technically, it is used like in the code snippet below, but that doesn&#8217;t mean it&#8217;s the best way to use it, if you don&#8217;t want to be labeled &#8220;as evil as eval&#8221;:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nvar firstVar = 3;\r\nvar secondVar = 5;\r\nvar sum;\r\n\r\nsum = eval(firstVar + secondVar);\r\n\r\n\/\/ output= 15\r\n<\/pre>\n<p>So, I guess that now you&#8217;re asking yourself why were you shown how <code>eval()<\/code> is used and warned against it all in the same breath. There are quite a lot of reasons for that&#8230;<\/p>\n<h2>Why the backlash?<\/h2>\n<p>Firstly, this function is misused quite a lot, resulting in slower loading times, cross-site scripting (XSS) attacks and more difficult debugging.<\/p>\n<p>Most of the time, this function is used as a gate to attack and steal valuable data from the application it is used in by hackers, so that&#8217;s why a lot of programmers are putting together different and efficient ways to evaluate an expression, just to put aside <code>eval()<\/code>.<\/p>\n<p>And they&#8217;ve managed to do so, in this way:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\neval('document.' + id + '.style.color = &quot;blue&quot;');\r\n\r\ndocument.getElementById(id).style.color = 'blue';\r\n\r\ndocument&#x5B;id].style.color = 'blue';\r\n<\/pre>\n<p>Essentially, instead of using the dot-name access to a variable, you can use the square brackets, and eliminate the need to use eval for this.<\/p>\n<p>Or even better, to get your element by its id and style it however you want.<\/p>\n<p>However there are many cases when it&#8217;s not only possible to use <code>eval()<\/code>, but also the best approach to the problem. these cases include:<\/p>\n<ul>\n<li>Code caching<\/li>\n<li>Evaluating code returned from the server<\/li>\n<li>Deferred execution<\/li>\n<\/ul>\n<p>So let&#8217;s see each of these cases separately.<\/p>\n<h2>Code Caching<\/h2>\n<p>Let&#8217;s suppose you have this piece of code and want to re-execute it in a later time:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\n var str = &quot;&quot;,\r\n     i = 0;\r\n     for (; i&lt;1000; i += 1) {\r\n          str += &quot;a&quot;;\r\n     }\r\n<\/pre>\n<p>The code snippet basically creates an empty string and attaches the &#8220;a&#8221; string to the one we already have, repeating the action a thousand times.<\/p>\n<p>To evaluate this code you might do this:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nvar strCode = 'var str=&quot;&quot;,i=0;for(;i&lt;1000;i+=1){str+=&quot;a&quot;;}';\r\n\r\neval(strCode).reExecute();\r\n<\/pre>\n<p>We have turned the code into a string, evaluated it, and then re-executed it.<\/p>\n<p>In this case it would be better if we proceeded like below:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nvar strCode = 'var str=&quot;&quot;,i=0;for(;i&lt;1000;i+=1){str+=&quot;a&quot;;}';\r\n\r\nvar evalStr = (new Function(strCode))();\r\n\r\nvar evaled = eval(evalStr);\r\n\r\nevaled.reExecute();\r\n<\/pre>\n<p>Which means that after turning the code we want to evaluate into a string, we have turned it into a function, and then evaluated it. Lastly we have re-executed it.<\/p>\n<p>Some people argue that <code>new Function()<\/code> should officially replace <code>eval()<\/code>, though if you would <a href=\"http:\/\/jsperf.com\/eval-vs-new-function\" target=\"_blank\">perform speed tests<\/a> you see that <code>eval()<\/code> has significantly better performance.<\/p>\n<h2>Evaluating code returned from the server<\/h2>\n<p>If you don&#8217;t already know of XMLHttpRequest, it&#8217;s only a component of the set of tools popularly known as AJAX. It makes a call back to the server from Javascript without refreshing the whole page.<\/p>\n<p>It is good programming practice that the code returned is passed to <code>eval()<\/code> for evaluation. Below is a simple example:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nfunction evalRequest(url) {\r\n\r\n    var xmlhttp = new XMLHttpRequest();\r\n\r\n    xmlhttp.onreadystatechange = function() {\r\n\r\n        if (xmlhttp.readyState==4 &amp;&amp; xmlhttp.status==200) {\r\n            eval(xmlhttp.responseText);\r\n        }\r\n\r\n    }\r\n\r\n    xmlhttp.open(&quot;GET&quot;, url, true);\r\n    xmlhttp.send(null);\r\n}\r\n<\/pre>\n<p>Essentially, we have taken a URL to a Javascript code, and then loaded and executed that code using XMLHttpRequest and <code>eval()<\/code>.<\/p>\n<h2>Deferred execution<\/h2>\n<p>In some cases, to shorten the loading time of a website, you can use deferred execution of Javascript, which means that the scripts are only executed after page load.<\/p>\n<p>Even though this method is used to improve the rendering speed of the sites, it is considered high risk, and you must very carefully evaluate your code before rendering it.<\/p>\n<p>Due to the <a href=\"https:\/\/developers.google.com\/speed\/pagespeed\/service\/DeferJavaScript\" target=\"_blank\">many problems<\/a> it brings, it is said that this method will be no longer available in the near future, which is why we&#8217;re not giving a concrete example of how <code>eval()<\/code> is used together with it.<\/p>\n<h2>Download the source code<\/h2>\n<p>This was an example of eval in Javascript.<\/p>\n<div class=\"download\"><strong>Download<\/strong><br \/>\nYou can download the full source code of this example here: <strong><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/05\/Eval.zip\">Eval<\/a><\/strong><\/div>\n","protected":false},"excerpt":{"rendered":"<p>The eval() function is one of the most discussed by JavaScript developers, most of them call it &#8220;evil&#8221; (such as Douglas Crockford), who coined the saying &#8220;eval() is evil&#8221;. But what most programmers fail to see is it&#8217;s potential when used properly. Take a look! &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [ulp id=&#8217;tCIwOngQUb3zSUuF&#8217;] &hellip;<\/p>\n","protected":false},"author":25,"featured_media":920,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[],"class_list":["post-4631","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Javascript Eval Example - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"The eval() function is one of the most discussed by JavaScript developers, most of them call it &quot;evil&quot; (such as Douglas Crockford), who coined the saying\" \/>\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.webcodegeeks.com\/javascript\/javascript-evalexample\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Javascript Eval Example - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"The eval() function is one of the most discussed by JavaScript developers, most of them call it &quot;evil&quot; (such as Douglas Crockford), who coined the saying\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webcodegeeks\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/era.balliu.7\" \/>\n<meta property=\"article:published_time\" content=\"2015-06-23T09:15:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-10T13:26:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Era Balliu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@BalliuEra\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Era Balliu\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/\"},\"author\":{\"name\":\"Era Balliu\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e\"},\"headline\":\"Javascript Eval Example\",\"datePublished\":\"2015-06-23T09:15:51+00:00\",\"dateModified\":\"2018-01-10T13:26:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/\"},\"wordCount\":793,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/\",\"name\":\"Javascript Eval Example - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"datePublished\":\"2015-06-23T09:15:51+00:00\",\"dateModified\":\"2018-01-10T13:26:05+00:00\",\"description\":\"The eval() function is one of the most discussed by JavaScript developers, most of them call it \\\"evil\\\" (such as Douglas Crockford), who coined the saying\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/javascript\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Javascript Eval Example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"name\":\"Web Code Geeks\",\"description\":\"Web Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webcodegeeks\",\"https:\/\/x.com\/webcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e\",\"name\":\"Era Balliu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f6adddf7eada210f682608fea9d8159441369ec622998a5851a447e0a2bfa3f3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f6adddf7eada210f682608fea9d8159441369ec622998a5851a447e0a2bfa3f3?s=96&d=mm&r=g\",\"caption\":\"Era Balliu\"},\"description\":\"Era is a Telecommunications Engineering student, with a great passion for new technologies. Up until now she has been coding with HTML\/CSS, Bootstrap and other front-end coding languages and frameworks, and her recent love is Angular JS.\",\"sameAs\":[\"http:\/\/www.webcodegeeks.com\/\",\"https:\/\/www.facebook.com\/era.balliu.7\",\"https:\/\/www.instagram.com\/eraballiu\/\",\"https:\/\/www.linkedin.com\/in\/eraballiu\",\"https:\/\/www.pinterest.com\/001r2gw0jt0ln6d\/\",\"https:\/\/x.com\/BalliuEra\",\"https:\/\/www.youtube.com\/c\/eraballiu\"],\"url\":\"https:\/\/www.webcodegeeks.com\/author\/era-balliu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Javascript Eval Example - Web Code Geeks - 2026","description":"The eval() function is one of the most discussed by JavaScript developers, most of them call it \"evil\" (such as Douglas Crockford), who coined the saying","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.webcodegeeks.com\/javascript\/javascript-evalexample\/","og_locale":"en_US","og_type":"article","og_title":"Javascript Eval Example - Web Code Geeks - 2026","og_description":"The eval() function is one of the most discussed by JavaScript developers, most of them call it \"evil\" (such as Douglas Crockford), who coined the saying","og_url":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_author":"https:\/\/www.facebook.com\/era.balliu.7","article_published_time":"2015-06-23T09:15:51+00:00","article_modified_time":"2018-01-10T13:26:05+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","type":"image\/jpeg"}],"author":"Era Balliu","twitter_card":"summary_large_image","twitter_creator":"@BalliuEra","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Era Balliu","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/"},"author":{"name":"Era Balliu","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e"},"headline":"Javascript Eval Example","datePublished":"2015-06-23T09:15:51+00:00","dateModified":"2018-01-10T13:26:05+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/"},"wordCount":793,"commentCount":2,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/","url":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/","name":"Javascript Eval Example - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","datePublished":"2015-06-23T09:15:51+00:00","dateModified":"2018-01-10T13:26:05+00:00","description":"The eval() function is one of the most discussed by JavaScript developers, most of them call it \"evil\" (such as Douglas Crockford), who coined the saying","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-evalexample\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"JavaScript","item":"https:\/\/www.webcodegeeks.com\/category\/javascript\/"},{"@type":"ListItem","position":3,"name":"Javascript Eval Example"}]},{"@type":"WebSite","@id":"https:\/\/www.webcodegeeks.com\/#website","url":"https:\/\/www.webcodegeeks.com\/","name":"Web Code Geeks","description":"Web Developers Resource Center","publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.webcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webcodegeeks","https:\/\/x.com\/webcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e","name":"Era Balliu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f6adddf7eada210f682608fea9d8159441369ec622998a5851a447e0a2bfa3f3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f6adddf7eada210f682608fea9d8159441369ec622998a5851a447e0a2bfa3f3?s=96&d=mm&r=g","caption":"Era Balliu"},"description":"Era is a Telecommunications Engineering student, with a great passion for new technologies. Up until now she has been coding with HTML\/CSS, Bootstrap and other front-end coding languages and frameworks, and her recent love is Angular JS.","sameAs":["http:\/\/www.webcodegeeks.com\/","https:\/\/www.facebook.com\/era.balliu.7","https:\/\/www.instagram.com\/eraballiu\/","https:\/\/www.linkedin.com\/in\/eraballiu","https:\/\/www.pinterest.com\/001r2gw0jt0ln6d\/","https:\/\/x.com\/BalliuEra","https:\/\/www.youtube.com\/c\/eraballiu"],"url":"https:\/\/www.webcodegeeks.com\/author\/era-balliu\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/4631","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/users\/25"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=4631"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/4631\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/920"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=4631"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=4631"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=4631"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}