{"id":4290,"date":"2019-11-07T16:16:28","date_gmt":"2019-11-07T16:16:28","guid":{"rendered":"https:\/\/vinish.dev\/?p=4290"},"modified":"2025-04-16T19:49:07","modified_gmt":"2025-04-16T14:19:07","slug":"oracle-apex-format-number-with-comma-and-decimal-using-javascript","status":"publish","type":"post","link":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript","title":{"rendered":"Oracle Apex: Format Number with Comma and Decimal Using JavaScript"},"content":{"rendered":"<p>In this Oracle Apex tutorial, you will learn how to format a number with comma and decimal using JavaScript. In Oracle Apex, for a text field or a number field, there is a property <strong>Format Mask<\/strong>, in which you can specify the number format with comma and decimal for the <a href=\"https:\/\/vinish.dev\/oracle-convert-currency-amount-in-words-using-pl-sql\">currency<\/a> fields, but it shows after the page load and <strong>usually we require it to show when user moves to the next field by pressing the Tab key or using the mouse<\/strong>. To achieve this functionality in Oracle Apex, we can use the JavaScript method <code>Number(value).toFixed()<\/code> on the <code>onfocusout<\/code> or <code>onblur<\/code> event. Below are the examples:<\/p>\n<h2>Format Number with Comma and Decimal Using JavaScript Example<\/h2>\n<p>In the following example, we will use the JavaScript method <code>Number(value).toFixed().replace()<\/code> on <code>focusout<\/code> event to format the number into the currency format. Follow these steps:<\/p>\n<p>Click on the <strong>Number Field<\/strong> in Oracle Apex page designer, for which you want to apply the format mask, then in the <strong>properties advance<\/strong> section paste the following JavaScript code in the <strong>Custom Attributes<\/strong>. Also, shown below in the image below:<\/p>\n<pre>onfocusout=\"this.value=Number(this.value).toFixed(2).replace(\/(\\d)(?=(\\d{3})+(?!\\d))\/g, '$1,')\"<\/pre>\n<p><a href=\"https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/javascript-number-tofixed.png\"><img decoding=\"async\" class=\"aligncenter size-large wp-image-4291\" src=\"https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/javascript-number-tofixed-1024x496.png\" alt=\"Oracle Apex - Convert number to currency format\" width=\"1024\" height=\"496\" srcset=\"https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/javascript-number-tofixed-1024x496.png 1024w, https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/javascript-number-tofixed-300x145.png 300w, https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/javascript-number-tofixed-600x290.png 600w, https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/javascript-number-tofixed-768x372.png 768w, https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/javascript-number-tofixed.png 1450w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/p>\n<p>Now when the user will press the Tab key or will use the mouse to navigate to the next field, this field value will be formatted with commas and 2 decimal places. If you want to change it to show 4 decimal places then use <code>toFixed(4)<\/code>.<\/p>\n<h2>JavaScript to Format a Number with 2 Decimal Places in Oracle Apex<\/h2>\n<p>To format a number with 2 decimal places without the comma, use the following JavaScript code in the <strong>Customer Attributes<\/strong> section:<\/p>\n<pre>onfocusout=\"this.value=Number(this.value).toFixed(2)\"<\/pre>\n<p>Here in both examples, I used the <code><a href=\"https:\/\/www.w3schools.com\/jsref\/event_onfocusout.asp\" target=\"_blank\" rel=\"noopener noreferrer\">onfocusout<\/a><\/code> JavaScript event, you can also use the <a href=\"https:\/\/www.w3schools.com\/jsref\/event_onblur.asp\" target=\"_blank\" rel=\"noopener noreferrer\"><code>onblur<\/code><\/a> JavaScript event for the same code. Below is the example:<\/p>\n<pre>onblur=\"this.value=Number(this.value).toFixed(2)\"<\/pre>\n<h3>Related Tutorials:<\/h3>\n<ul>\n<li><a href=\"https:\/\/vinish.dev\/how-to-show-alert-messages-in-oracle-apex\">How to Show Alert Messages in Oracle Apex?<\/a><\/li>\n<li><a href=\"https:\/\/vinish.dev\/writing-text-to-a-region-using-javascript-in-oracle-apex\">Writing Text to a Region Using JavaScript in Oracle Apex<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>In this Oracle Apex tutorial, you will learn how to format a number with comma and decimal using JavaScript. In Oracle Apex, for a text field or a number field, there is a property Format Mask, in which you can specify the number format with comma and decimal for the currency fields, but it shows [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":15656,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[],"class_list":["post-4290","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-apex"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Oracle Apex: Format Number with Comma and Decimal Using JavaScript &#8226; Vinish.Dev<\/title>\n<meta name=\"description\" content=\"This Oracle Apex tutorial, covers the topics such as, JavaScript number format with comma example, JavaScript format number with 2 decimal places, JavaScript format currency example.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle Apex: Format Number with Comma and Decimal Using JavaScript &#8226; Vinish.Dev\" \/>\n<meta property=\"og:description\" content=\"This Oracle Apex tutorial, covers the topics such as, JavaScript number format with comma example, JavaScript format number with 2 decimal places, JavaScript format currency example.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript\" \/>\n<meta property=\"og:site_name\" content=\"Vinish.Dev\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/foxinfotech2014\" \/>\n<meta property=\"article:published_time\" content=\"2019-11-07T16:16:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-16T14:19:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/oracle-apex-format-number-with-comma-and-decimal-using-javascript-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"480\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Vinish Kapoor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/x.com\/vinish_kapoor\" \/>\n<meta name=\"twitter:site\" content=\"@foxinfotech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vinish Kapoor\" \/>\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:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript\"},\"author\":{\"name\":\"Vinish Kapoor\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/a7790479716d2a54131ca873f8483d3f\"},\"headline\":\"Oracle Apex: Format Number with Comma and Decimal Using JavaScript\",\"datePublished\":\"2019-11-07T16:16:28+00:00\",\"dateModified\":\"2025-04-16T14:19:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript\"},\"wordCount\":304,\"commentCount\":7,\"publisher\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\"},\"image\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript-1.jpg\",\"articleSection\":[\"Oracle APEX\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript\",\"url\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript\",\"name\":\"Oracle Apex: Format Number with Comma and Decimal Using JavaScript &#8226; Vinish.Dev\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript-1.jpg\",\"datePublished\":\"2019-11-07T16:16:28+00:00\",\"dateModified\":\"2025-04-16T14:19:07+00:00\",\"description\":\"This Oracle Apex tutorial, covers the topics such as, JavaScript number format with comma example, JavaScript format number with 2 decimal places, JavaScript format currency example.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#primaryimage\",\"url\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript-1.jpg\",\"contentUrl\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript-1.jpg\",\"width\":640,\"height\":480,\"caption\":\"Oracle Apex: Format Number with Comma and Decimal Using JavaScript\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vinish.dev\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle APEX\",\"item\":\"https:\\\/\\\/vinish.dev\\\/category\\\/apex\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Oracle Apex: Format Number with Comma and Decimal Using JavaScript\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#website\",\"url\":\"https:\\\/\\\/vinish.dev\\\/\",\"name\":\"Vinish.Dev\",\"description\":\"Vinish Kapoor&#039;s Blog: Best Oracle Blog for Developers\",\"publisher\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vinish.dev\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\",\"name\":\"Vinish Kapoor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"url\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"contentUrl\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"width\":192,\"height\":192,\"caption\":\"Vinish Kapoor\"},\"logo\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\"},\"description\":\"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.\",\"sameAs\":[\"https:\\\/\\\/vinish.dev\\\/\",\"https:\\\/\\\/www.facebook.com\\\/foxinfotech2014\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/vinish-kapoor\\\/\",\"https:\\\/\\\/x.com\\\/foxinfotech\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/a7790479716d2a54131ca873f8483d3f\",\"name\":\"Vinish Kapoor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"caption\":\"Vinish Kapoor\"},\"description\":\"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.\",\"sameAs\":[\"https:\\\/\\\/vinish.dev\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/vinish-kapoor\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/x.com\\\/vinish_kapoor\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle Apex: Format Number with Comma and Decimal Using JavaScript &#8226; Vinish.Dev","description":"This Oracle Apex tutorial, covers the topics such as, JavaScript number format with comma example, JavaScript format number with 2 decimal places, JavaScript format currency example.","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:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript","og_locale":"en_US","og_type":"article","og_title":"Oracle Apex: Format Number with Comma and Decimal Using JavaScript &#8226; Vinish.Dev","og_description":"This Oracle Apex tutorial, covers the topics such as, JavaScript number format with comma example, JavaScript format number with 2 decimal places, JavaScript format currency example.","og_url":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript","og_site_name":"Vinish.Dev","article_publisher":"https:\/\/www.facebook.com\/foxinfotech2014","article_published_time":"2019-11-07T16:16:28+00:00","article_modified_time":"2025-04-16T14:19:07+00:00","og_image":[{"width":640,"height":480,"url":"https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/oracle-apex-format-number-with-comma-and-decimal-using-javascript-1.jpg","type":"image\/jpeg"}],"author":"Vinish Kapoor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/x.com\/vinish_kapoor","twitter_site":"@foxinfotech","twitter_misc":{"Written by":"Vinish Kapoor","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#article","isPartOf":{"@id":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript"},"author":{"name":"Vinish Kapoor","@id":"https:\/\/vinish.dev\/#\/schema\/person\/a7790479716d2a54131ca873f8483d3f"},"headline":"Oracle Apex: Format Number with Comma and Decimal Using JavaScript","datePublished":"2019-11-07T16:16:28+00:00","dateModified":"2025-04-16T14:19:07+00:00","mainEntityOfPage":{"@id":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript"},"wordCount":304,"commentCount":7,"publisher":{"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4"},"image":{"@id":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#primaryimage"},"thumbnailUrl":"https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/oracle-apex-format-number-with-comma-and-decimal-using-javascript-1.jpg","articleSection":["Oracle APEX"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript","url":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript","name":"Oracle Apex: Format Number with Comma and Decimal Using JavaScript &#8226; Vinish.Dev","isPartOf":{"@id":"https:\/\/vinish.dev\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#primaryimage"},"image":{"@id":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#primaryimage"},"thumbnailUrl":"https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/oracle-apex-format-number-with-comma-and-decimal-using-javascript-1.jpg","datePublished":"2019-11-07T16:16:28+00:00","dateModified":"2025-04-16T14:19:07+00:00","description":"This Oracle Apex tutorial, covers the topics such as, JavaScript number format with comma example, JavaScript format number with 2 decimal places, JavaScript format currency example.","breadcrumb":{"@id":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#primaryimage","url":"https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/oracle-apex-format-number-with-comma-and-decimal-using-javascript-1.jpg","contentUrl":"https:\/\/vinish.dev\/wp-content\/uploads\/2019\/11\/oracle-apex-format-number-with-comma-and-decimal-using-javascript-1.jpg","width":640,"height":480,"caption":"Oracle Apex: Format Number with Comma and Decimal Using JavaScript"},{"@type":"BreadcrumbList","@id":"https:\/\/vinish.dev\/oracle-apex-format-number-with-comma-and-decimal-using-javascript#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vinish.dev\/"},{"@type":"ListItem","position":2,"name":"Oracle APEX","item":"https:\/\/vinish.dev\/category\/apex"},{"@type":"ListItem","position":3,"name":"Oracle Apex: Format Number with Comma and Decimal Using JavaScript"}]},{"@type":"WebSite","@id":"https:\/\/vinish.dev\/#website","url":"https:\/\/vinish.dev\/","name":"Vinish.Dev","description":"Vinish Kapoor&#039;s Blog: Best Oracle Blog for Developers","publisher":{"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vinish.dev\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4","name":"Vinish Kapoor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","url":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","contentUrl":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","width":192,"height":192,"caption":"Vinish Kapoor"},"logo":{"@id":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png"},"description":"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.","sameAs":["https:\/\/vinish.dev\/","https:\/\/www.facebook.com\/foxinfotech2014","https:\/\/www.linkedin.com\/in\/vinish-kapoor\/","https:\/\/x.com\/foxinfotech"]},{"@type":"Person","@id":"https:\/\/vinish.dev\/#\/schema\/person\/a7790479716d2a54131ca873f8483d3f","name":"Vinish Kapoor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","caption":"Vinish Kapoor"},"description":"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.","sameAs":["https:\/\/vinish.dev\/","https:\/\/www.linkedin.com\/in\/vinish-kapoor\/","https:\/\/x.com\/https:\/\/x.com\/vinish_kapoor"]}]}},"_links":{"self":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/4290","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/comments?post=4290"}],"version-history":[{"count":1,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/4290\/revisions"}],"predecessor-version":[{"id":18246,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/4290\/revisions\/18246"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/media\/15656"}],"wp:attachment":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/media?parent=4290"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/categories?post=4290"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/tags?post=4290"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}