{"id":6661,"date":"2015-09-10T12:15:53","date_gmt":"2015-09-10T09:15:53","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=6661"},"modified":"2018-01-10T16:09:00","modified_gmt":"2018-01-10T14:09:00","slug":"javascript-parseintstring-int-example","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/","title":{"rendered":"Javascript ParseInt \/ String-to-int Example"},"content":{"rendered":"<p>Let&#8217;s suppose you receive from the user of your site some data, in string form, which should be converted to integer before you use them again. For that, you can use  the <code>parseInt()<\/code> function. But how can you do that exactly, and also reverse this action? Let&#8217;s see below.<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>Syntax<\/h2>\n<p>The <code>parseInt()<\/code> function takes a string and a base in numeral systems (also called radix) as it&#8217;s arguments to later parse the string into an integer of the specified radix or NaN (not a number). The syntax goes like this:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nparseInt(yourString, radix);\r\n<\/pre>\n<p>The value that will be parsed is the variable <code>yourString<\/code>. However, if it happens for it to not be of the type &#8220;string&#8221; it will be converted to one and then it&#8217;s proceeded with the method. If the first character of <code>yourString<\/code> is a whitespace, it will be ignored, and proceeded with the next one.<\/p>\n<p>The radix, as we briefly mentioned before is the base of a mathematical numeral system. It may be a number from 2 to 36. It is highly advisable to always specify this parameter to exclude the possibility of confusion and unpredictable behavior of the browser. The most common radix used is the decimal 10.<\/p>\n<h2>More rules<\/h2>\n<p>This function needs some extra data to make the accurate conversion, and in order to simplify the matters, Javascript has some internal rules when using it, to avoid the need for multiple specifications. More explicitely, these rules apply for whitespaces, not-numerals and undefined radixes. Take a look!<\/p>\n<p><strong>Whitespaces<\/strong><\/p>\n<p>We mentioned that strings starting with a whitespace will be converted from the next character after it. What about strings ending in a whitespace? It&#8217;s also ignored.<\/p>\n<p><strong>Not numerals<\/strong><\/p>\n<p>If <code>parseInt()<\/code> encounters a character which is not a numeral in the specified radix, it will stop the parsing and return the value calculated up to there. However, if the first character (different from a whitespace) is not a numeral, the function will return <code>NaN<\/code>.<\/p>\n<p><em>Note:<\/em> <code>NaN<\/code> is not a number in any radix for arithmetical purposes, which means that any operation in which it takes part will result in <code>NaN<\/code>.<\/p>\n<p><strong>Undefined radixes<\/strong><\/p>\n<p>If the radix is undefined, the function itself assumes it according to the leading characters of the string you&#8217;re trying to convert to an integer.There are three main points to remember in this case:<\/p>\n<ol>\n<li>When the string starts with <code>0x<\/code> or <code>0X<\/code>, the radix is assumed to be hexadecimal (16), and the remainder of the string is parsed.<\/li>\n<li>When the string starts with <code>0<\/code> the radix is assumed to be either octal (8) or decimal (10), depending on the browser. This is also the reason why it is highly recommended to always specify the radix. <\/li>\n<li>If the string starts with any other character than the cases above, the radix is assumed to be decimal (10).<\/li>\n<\/ol>\n<p>Let&#8217;s see it in action!<\/p>\n<h2>Usage<\/h2>\n<p>Now that you know the general rules according to which <code>parseInt()<\/code> operates, let&#8217;s see the real examples below. First of is having a floating number as a string:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nvar a = parseInt(&quot;16&quot;); \/\/result: 16\r\nvar b = parseInt(&quot;16.00&quot;); \/\/result: 16\r\nvar c = parseInt(&quot;16.11&quot;); \/\/result: 16\r\n<\/pre>\n<p>All three cases will return <code>16<\/code>, because the function encounters the floating point and stops parsing, returning the calculated value up to it. Note that we haven&#8217;t specified the radix in any way, so it&#8217;s assumed to be decimal (10). <\/p>\n<p>Let&#8217;s check out spaces next:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nvar d = parseInt(&quot;16 years&quot;); \/\/result: 16\r\nvar e = parseInt(&quot;16 11 1994&quot;); \/\/result: 16\r\nvar f = parseInt(&quot; 16 &quot;); \/\/result: 16\r\n<\/pre>\n<p>In this case the result is also 16 in all the cases, but for different reasons. In the first one the parsing has stopped after having encountered a space which is not either leading or ending the string. The same happens regardless of whether that space is followed by a digit or a letter.<\/p>\n<p>However, if the first one would have the format below, it would return <code>NaN<\/code> (Not a Number):<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nvar d = parseInt(&quot;years 16&quot;); \r\n<\/pre>\n<p>But what happens when the string is an expression or operation with numbers? Take a look:<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nvar g = parseInt(&quot;16*3&quot;, 10);\r\nvar h = parseInt(&quot;16e2&quot;, 10);\r\nvar j = parseInt(&quot;16px&quot;, 10);\r\n<\/pre>\n<p>All the operators are considered characters that stop the parsing, resulting in all three cases returning <code>16<\/code>.<\/p>\n<p>Lastly, let&#8217;s see how this method operates with different radixes.<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nvar x = parseInt(&quot;FXX123&quot;, 16); \/\/result: 15\r\nvar y = parseInt(&quot;1111&quot;, 2); \/\/result: 15\r\nvar z = parseInt(&quot;993&quot;, 8); \/\/result NaN\r\n<\/pre>\n<p>In the first two cases, the strings are equal to 15 in the hexadecimal and binary base respectively. In the second case, since <code>993<\/code> is a number that cannot be of the octal base (since no one-digit number bigger than 7 can be of that radix), so the method returns <code>NaN<\/code>, having considered <code>9<\/code> as just a common non-number character.<\/p>\n<h2>Reversing parseInt()<\/h2>\n<p>To do the reversal of <code>parseInt()<\/code>, we can use a function with an even simpler usage. It&#8217;s syntax goes like this: <\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\r\nmyInteger.toString(radix)\r\n<\/pre>\n<p>It takes the number you want to convert to a string and the radix.<\/p>\n<h2>Download the source code <\/h2>\n<p>This was an example of parseInt in Javascript.<\/p>\n<p>Download the source code for this tutorial: <\/p>\n<div class=\"download\"><strong>Download<\/strong><br \/>You can download the full source code of this example here : <strong><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/08\/parseInt.zip\">parseInt<\/a><\/strong><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Let&#8217;s suppose you receive from the user of your site some data, in string form, which should be converted to integer before you use them again. For that, you can use the parseInt() function. But how can you do that exactly, and also reverse this action? Let&#8217;s see below. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &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-6661","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 ParseInt \/ String-to-int Example - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Let&#039;s suppose you receive from the user of your site some data, in string form, which should be converted to integer before you use them again. For that,\" \/>\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-parseintstring-int-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Javascript ParseInt \/ String-to-int Example - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Let&#039;s suppose you receive from the user of your site some data, in string form, which should be converted to integer before you use them again. For that,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/\" \/>\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-09-10T09:15:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-10T14:09:00+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-parseintstring-int-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/\"},\"author\":{\"name\":\"Era Balliu\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e\"},\"headline\":\"Javascript ParseInt \/ String-to-int Example\",\"datePublished\":\"2015-09-10T09:15:53+00:00\",\"dateModified\":\"2018-01-10T14:09:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/\"},\"wordCount\":888,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/#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-parseintstring-int-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/\",\"name\":\"Javascript ParseInt \/ String-to-int Example - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"datePublished\":\"2015-09-10T09:15:53+00:00\",\"dateModified\":\"2018-01-10T14:09:00+00:00\",\"description\":\"Let's suppose you receive from the user of your site some data, in string form, which should be converted to integer before you use them again. For that,\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/#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-parseintstring-int-example\/#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 ParseInt \/ String-to-int 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 ParseInt \/ String-to-int Example - Web Code Geeks - 2026","description":"Let's suppose you receive from the user of your site some data, in string form, which should be converted to integer before you use them again. For that,","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-parseintstring-int-example\/","og_locale":"en_US","og_type":"article","og_title":"Javascript ParseInt \/ String-to-int Example - Web Code Geeks - 2026","og_description":"Let's suppose you receive from the user of your site some data, in string form, which should be converted to integer before you use them again. For that,","og_url":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/","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-09-10T09:15:53+00:00","article_modified_time":"2018-01-10T14:09:00+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-parseintstring-int-example\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/"},"author":{"name":"Era Balliu","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c27ecf40c810e6396ba93ffb829c7b0e"},"headline":"Javascript ParseInt \/ String-to-int Example","datePublished":"2015-09-10T09:15:53+00:00","dateModified":"2018-01-10T14:09:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/"},"wordCount":888,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/#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-parseintstring-int-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/","url":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/","name":"Javascript ParseInt \/ String-to-int Example - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","datePublished":"2015-09-10T09:15:53+00:00","dateModified":"2018-01-10T14:09:00+00:00","description":"Let's suppose you receive from the user of your site some data, in string form, which should be converted to integer before you use them again. For that,","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-parseintstring-int-example\/#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-parseintstring-int-example\/#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 ParseInt \/ String-to-int 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\/6661","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=6661"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/6661\/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=6661"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=6661"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=6661"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}