{"id":12927,"date":"2016-05-31T16:15:25","date_gmt":"2016-05-31T13:15:25","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=12927"},"modified":"2018-01-10T16:31:12","modified_gmt":"2018-01-10T14:31:12","slug":"javascript-timer-example","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/","title":{"rendered":"Javascript Timer Example"},"content":{"rendered":"<p>The aim of this example is to explain the timing events in javascript.<\/p>\n<p>The javascript <code>window.setTimeout(function, milliseconds)<\/code> function is used to execute a function, after waiting a specified number of milliseconds. This method returns a timeout id.<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;]<br \/>\n&nbsp;<br \/>\nNotice, <code>setTimeout<\/code> and <code>window.setTimeout<\/code> are essentially the same, the only difference being that in the second statement we are referencing the <code>setTimeout<\/code> method as a property of the global window object.<\/p>\n<p>The javascript <code>clearTimeout(timeoutID)<\/code> function is used to stop the given timer.<\/p>\n<p>Following tips are very important when working with this function<\/p>\n<ul>\n<li>The function is only executed once. If you need to repeat execution, use the <code>setInterval()<\/code> method.<\/li>\n<li>Use the clearTimeout() method to prevent the function from running.<\/li>\n<\/ul>\n<h2>1. HTML<\/h2>\n<p>First of all you need to create a simple html documents.<\/p>\n<p><span style=\"text-decoration: underline;\"><em>timerExample.html<\/em><\/span><\/p>\n<pre class=\"brush:xml;\">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n\t&lt;title&gt;javascript timer example&lt;\/title&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/pre>\n<h2>2. Javascript Timer Examples<\/h2>\n<h3>2.1 Show alert after 3 seconds<\/h3>\n<p>This example sets a timer to call the given method after 3 seconds. As you can notice, the <code>setTimeout(function, milliseconds)<\/code> function takes two parameters, the first is the method name and the second is the interval time in milliseconds.<\/p>\n<p>Click a button. Wait 3 seconds, and the page will alert &#8220;Hello&#8221;:<\/p>\n<pre class=\"brush:xml;highlight:[1]\">&lt;button onclick=\"setTimeout(myFunction, 3000)\"&gt;Try it&lt;\/button&gt;\r\n\r\n&lt;script&gt;\r\n\tfunction myFunction() {\r\n\t\talert('Hello');\r\n\t}\r\n&lt;\/script&gt;\r\n<\/pre>\n<p>The result in the browser would be:<\/p>\n<figure id=\"attachment_12928\" aria-describedby=\"caption-attachment-12928\" style=\"width: 800px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/05\/javascriptTimerExample1.gif\"><img decoding=\"async\" class=\"size-full wp-image-12928\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/05\/javascriptTimerExample1.gif\" alt=\"Show alert after 2 seconds\" width=\"800\" height=\"300\" \/><\/a><figcaption id=\"caption-attachment-12928\" class=\"wp-caption-text\">Show alert after 3 seconds<\/figcaption><\/figure>\n<h3>2.2 Stop javascript timer<\/h3>\n<p>The javascript <code>clearTimeout(timeoutID)<\/code> is used to stop the timer by using the given timeoutID. The javascript <code>setTimeout(function, milliseconds)<\/code> function returns a timeout id that can be passed to this method.<\/p>\n<pre class=\"brush:xml;highlight:[1,2]\">&lt;button onclick=\"myVar = setTimeout(myFunction, 2000)\"&gt;Try it&lt;\/button&gt;\r\n&lt;button onclick=\"clearTimeout(myVar)\"&gt;Stop it&lt;\/button&gt;\r\n\r\n&lt;script&gt;\r\n\tfunction myFunction() {\r\n\t\talert('Hello');\r\n\t}\r\n&lt;\/script&gt;\r\n<\/pre>\n<p>The result in the browser would be:<\/p>\n<figure id=\"attachment_12937\" aria-describedby=\"caption-attachment-12937\" style=\"width: 800px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/05\/javascriptTimerExample2.gif\"><img decoding=\"async\" class=\"size-full wp-image-12937\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/05\/javascriptTimerExample2.gif\" alt=\"Stop javascript timer\" width=\"800\" height=\"300\" \/><\/a><figcaption id=\"caption-attachment-12937\" class=\"wp-caption-text\">Stop javascript timer<\/figcaption><\/figure>\n<h3>2.3 O&#8217;clock example<\/h3>\n<p>As you can notice, in the line 4 of the following javascript code, we call the <code>startTime()<\/code> method to show o&#8217;clock and set a timer. This timer will call the <code>startTime()<\/code> method after a half of second. That will help us to update the o&#8217;clock values.<\/p>\n<pre class=\"brush:xml;highlight:[1,4,14]\">&lt;div id=\"txt\"&gt;&lt;\/div&gt;\r\n\r\n&lt;script&gt;\r\n\tstartTime();\r\n\tfunction startTime() {\r\n\t\tvar today = new Date();\r\n\t\tvar h = today.getHours();\r\n\t\tvar m = today.getMinutes();\r\n\t\tvar s = today.getSeconds();\r\n\t\t\/\/ add a zero in front of numbers&lt;10\r\n\t\tm = checkTime(m);\r\n\t\ts = checkTime(s);\r\n\t\tdocument.getElementById(\"txt\").innerHTML = h + \":\" + m + \":\" + s;\r\n\t\tvar t = setTimeout(function(){ startTime() }, 500);\r\n\t}\r\n\r\n\tfunction checkTime(i) {\r\n\t\tif (i &lt; 10) {\r\n\t\t\ti = \"0\" + i;\r\n\t\t}\r\n\t\treturn i;\r\n\t}\r\n&lt;\/script&gt;\r\n<\/pre>\n<p>The result in the browser would be:<\/p>\n<figure id=\"attachment_12957\" aria-describedby=\"caption-attachment-12957\" style=\"width: 800px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/05\/javascriptTimerExample3.gif\"><img decoding=\"async\" class=\"size-full wp-image-12957\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/05\/javascriptTimerExample3.gif\" alt=\"O'clock example \" width=\"800\" height=\"300\" \/><\/a><figcaption id=\"caption-attachment-12957\" class=\"wp-caption-text\">O&#8217;clock example<\/figcaption><\/figure>\n<h2>4. Download the Source Code<\/h2>\n<div class=\"download\"><strong>Download: <\/strong>You can download the full source code of this example here: <a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/05\/javascript-timer-example.zip\"><strong>Javascript Timer Example<\/strong><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>The aim of this example is to explain the timing events in javascript. The javascript window.setTimeout(function, milliseconds) function is used to execute a function, after waiting a specified number of milliseconds. This method returns a timeout id. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [ulp id=&#8217;tCIwOngQUb3zSUuF&#8217;] &nbsp; Notice, setTimeout and window.setTimeout are essentially the &hellip;<\/p>\n","protected":false},"author":106,"featured_media":920,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[],"class_list":["post-12927","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 Timer Example - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"The aim of this example is to explain the timing events in javascript. The javascript window.setTimeout(function, milliseconds) function is used to\" \/>\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-timer-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Javascript Timer Example - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"The aim of this example is to explain the timing events in javascript. The javascript window.setTimeout(function, milliseconds) function is used to\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-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:published_time\" content=\"2016-05-31T13:15:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-10T14:31:12+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=\"Saeb Najim\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Saeb Najim\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 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-timer-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/\"},\"author\":{\"name\":\"Saeb Najim\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/7554117e1066be33eda4c81bac192cc9\"},\"headline\":\"Javascript Timer Example\",\"datePublished\":\"2016-05-31T13:15:25+00:00\",\"dateModified\":\"2018-01-10T14:31:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/\"},\"wordCount\":341,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-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-timer-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/\",\"name\":\"Javascript Timer Example - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"datePublished\":\"2016-05-31T13:15:25+00:00\",\"dateModified\":\"2018-01-10T14:31:12+00:00\",\"description\":\"The aim of this example is to explain the timing events in javascript. The javascript window.setTimeout(function, milliseconds) function is used to\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-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-timer-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 Timer 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\/7554117e1066be33eda4c81bac192cc9\",\"name\":\"Saeb Najim\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1a6884eb32867720ef22a2a7728235120963a9a750d54d0356d5e3619ad3cd06?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1a6884eb32867720ef22a2a7728235120963a9a750d54d0356d5e3619ad3cd06?s=96&d=mm&r=g\",\"caption\":\"Saeb Najim\"},\"description\":\"Saeb has graduated from the University of Technology. During the last ten years (since 2005) he has been involved with a large number of projects about programming, software engineering, design and analysis . He works as a senior Software Engineer in the e-commerce and web development sector where he is mainly responsible for projects based on Java, Java frameworks, design patterns and Big Data technologies.\",\"sameAs\":[\"http:\/\/www.webcodegeeks.com\/\",\"https:\/\/www.linkedin.com\/in\/saebnajim\"],\"url\":\"https:\/\/www.webcodegeeks.com\/author\/saeb-najim\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Javascript Timer Example - Web Code Geeks - 2026","description":"The aim of this example is to explain the timing events in javascript. The javascript window.setTimeout(function, milliseconds) function is used to","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-timer-example\/","og_locale":"en_US","og_type":"article","og_title":"Javascript Timer Example - Web Code Geeks - 2026","og_description":"The aim of this example is to explain the timing events in javascript. The javascript window.setTimeout(function, milliseconds) function is used to","og_url":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_published_time":"2016-05-31T13:15:25+00:00","article_modified_time":"2018-01-10T14:31:12+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":"Saeb Najim","twitter_card":"summary_large_image","twitter_creator":"@webcodegeeks","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Saeb Najim","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/"},"author":{"name":"Saeb Najim","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/7554117e1066be33eda4c81bac192cc9"},"headline":"Javascript Timer Example","datePublished":"2016-05-31T13:15:25+00:00","dateModified":"2018-01-10T14:31:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/"},"wordCount":341,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-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-timer-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/","url":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/","name":"Javascript Timer Example - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","datePublished":"2016-05-31T13:15:25+00:00","dateModified":"2018-01-10T14:31:12+00:00","description":"The aim of this example is to explain the timing events in javascript. The javascript window.setTimeout(function, milliseconds) function is used to","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/javascript\/javascript-timer-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-timer-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 Timer 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\/7554117e1066be33eda4c81bac192cc9","name":"Saeb Najim","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1a6884eb32867720ef22a2a7728235120963a9a750d54d0356d5e3619ad3cd06?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1a6884eb32867720ef22a2a7728235120963a9a750d54d0356d5e3619ad3cd06?s=96&d=mm&r=g","caption":"Saeb Najim"},"description":"Saeb has graduated from the University of Technology. During the last ten years (since 2005) he has been involved with a large number of projects about programming, software engineering, design and analysis . He works as a senior Software Engineer in the e-commerce and web development sector where he is mainly responsible for projects based on Java, Java frameworks, design patterns and Big Data technologies.","sameAs":["http:\/\/www.webcodegeeks.com\/","https:\/\/www.linkedin.com\/in\/saebnajim"],"url":"https:\/\/www.webcodegeeks.com\/author\/saeb-najim\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/12927","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\/106"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=12927"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/12927\/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=12927"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=12927"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=12927"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}