{"id":695,"date":"2021-04-21T05:49:39","date_gmt":"2021-04-21T05:49:39","guid":{"rendered":"https:\/\/bcisnotes.com\/fourthsemester\/?p=695"},"modified":"2021-04-21T05:49:39","modified_gmt":"2021-04-21T05:49:39","slug":"introduction-to-javascript-client-side-scripting-bcis-notes","status":"publish","type":"post","link":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/","title":{"rendered":"Introduction to JavaScript || Client Side Scripting || BCIS Notes"},"content":{"rendered":"<h1 style=\"text-align: center;\">Introduction to JavaScript<\/h1>\n<div class=\"page\" title=\"Page 1\">\n<div class=\"section\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>JavaScript is the most popular and widely used client-side scripting language. Client-side scripting refers to scripts that run within your web browser. It is designed to add interactivity and dynamic effects to web pages by manipulating the content returned from a web server.<\/p>\n<h3>What You Can Do with JavaScript<\/h3>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>There are lot more things you can do with JavaScript.<\/p>\n<ul>\n<li>You can modify the content of a web page by adding or removing elements.<\/li>\n<li>You can change the style and position of the elements on a web page.<\/li>\n<li>You can monitor events like a mouse click, hover, etc., and react to them.<\/li>\n<li>You can perform and control transitions and animations.<\/li>\n<li>You can create alert pop-ups to display info or warning messages to the user.<\/li>\n<li>You can perform operations based on user inputs and display the results.<\/li>\n<li>You can validate user inputs before submitting them to the server.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h3>Adding JavaScript to Your Web Pages<\/h3>\n<p>There are typically three ways to add JavaScript to a web page:<\/p>\n<ul>\n<li>Embedding the JavaScript code between a pair of &lt;script&gt; and &lt;\/script&gt; tag.<\/li>\n<li>Creating an external JavaScript file with the .js extension and then load it within the page through the src attribute of the &lt;script&gt; tag.<\/li>\n<li>Placing the JavaScript code directly inside an HTML tag using the special tag attributes such as onclick, onmouseover, onkeypress, onload, etc.<\/li>\n<\/ul>\n<p>The following sections will describe each of these procedures in detail:<\/p>\n<h3>Embedding the JavaScript Code<\/h3>\n<p>You can embed the JavaScript code directly within your web pages by placing it between the &lt;script&gt; and &lt;\/script&gt; tags. The &lt;script&gt; tag indicates to the browser that the contained statements are to be interpreted as executable script and not HTML. Here&#8217;s an example:<\/p>\n<p><strong>Refer 1-EmbeddedJS.HTML<\/strong><\/p>\n<h4>Calling an External JavaScript File<\/h4>\n<p>You can also place your JavaScript code into a separate file with a .js extension, and then call that file in your document through the src attribute of the &lt;script&gt; tag, like this:<\/p>\n<p>&lt;script src=&#8221;js\/hello.js&#8221;&gt;&lt;\/script&gt;<\/p>\n<p>This is useful if you want the same scripts available to multiple documents. It saves you from repeating the same task over and over again and makes your website much easier to maintain.<\/p>\n<p>Well, let&#8217;s create a JavaScript file named &#8220;hello.js&#8221; and place the following code in it:<\/p>\n<p>\/\/ A function to display a message function sayHello() { alert(&#8220;Hello World!&#8221;); } \/\/ Call function on click of the button document.getElementById(&#8220;myBtn&#8221;).onclick = sayHello;<\/p>\n<div class=\"page\" title=\"Page 2\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<p>Now, you can call this external JavaScript file within a web page using the &lt;script&gt; the tag.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<p><strong>Refer 2-ExternalJS.HTML<\/strong><\/p>\n<h4>Placing the JavaScript Code Inline<\/h4>\n<p>You can also place JavaScript code inline by inserting it directly inside the HTML tag using the special tag attributes such<br \/>\nas onclick, onmouseover, onkeypress, onload, etc.<\/p>\n<p>However, you should avoid placing a large amount of JavaScript code inline as it clutters up your HTML with JavaScript and makes your code difficult to maintain.<\/p>\n<p><strong>Refer 3-InlineJS.HTML<\/strong><\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"page\" title=\"Page 3\">\n<div class=\"layoutArea\">\n<div class=\"column\">\n<h4>Positioning of Script inside HTML Document<\/h4>\n<p>The &lt;script&gt; element can be placed in the &lt;head&gt;, or &lt;body&gt; section of an HTML document. But ideally, scripts should be placed at the end of the body section, just before the closing &lt;\/body&gt; tag, it will make your web pages load faster since it prevents obstruction of initial page rendering.<\/p>\n<p>Each &lt;script&gt; tag blocks the page rendering process until it has fully downloaded and executed the JavaScript code, so placing them in the head section (i.e. &lt;head&gt; element) of the document without any valid reason will significantly impact your website performance.<\/p>\n<h3>Difference Between Client-side and Server-side Scripting<\/h3>\n<p>Client-side scripting languages such as JavaScript, VBScript, etc. are interpreted and executed by the web browser, while server-side scripting languages such as PHP, ASP, Java, Python, Ruby, etc. runs on the webserver and the output sent back to the web browser in HTML format.<\/p>\n<p>Also, the response from a server-side script is slower as compared to a client-side script, because server-side scripts are processed on the remote computer, not on the user&#8217;s local computer.<\/p>\n<table>\n<thead>\n<tr>\n<th>Client-side scripting<\/th>\n<th>Server-side scripting<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Source code is visible to the user.<\/td>\n<td>Source code is not visible to the user because its output<br \/>\nof server-side is an HTML page.<\/td>\n<\/tr>\n<tr>\n<td>It usually depends on the browser and its version.<\/td>\n<td>In this, any server-side technology can be useful and it does not depend on the client.<\/td>\n<\/tr>\n<tr>\n<td>It runs on the user\u2019s computer.<\/td>\n<td>It runs on a web server.<\/td>\n<\/tr>\n<tr>\n<td>There are many advantages link with this like faster.<br \/>\nresponse times, a more interactive application.<\/td>\n<td>The primary advantage is its the ability to highly customize, response<br \/>\nrequirements, access rights based on user.<\/td>\n<\/tr>\n<tr>\n<td>It does not provide security for data.<\/td>\n<td>It provides more security for data.<\/td>\n<\/tr>\n<tr>\n<td>It is a technique used in web development in which scripts run on the client&#8217;s browser.<\/td>\n<td>It is a technique that uses scripts on a webserver to produce a response that is customized for each client&#8217;s request.<\/td>\n<\/tr>\n<tr>\n<td>HTML, CSS, and javascript are used.<\/td>\n<td>PHP, Python, Java, Ruby are used.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p class=\"p1\">If you liked our content Introduction to JavaScript, then you may also like\u00a0<a href=\"https:\/\/bcisnotes.com\/fourthsemester\/xslt-xml-dtd-xstl-xhtml-bcis-notes\/\">XSLT\u00a0<\/a><\/p>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>Introduction to JavaScript JavaScript is the most popular and widely used client-side scripting language. Client-side scripting refers to scripts that run within your web browser. <a class=\"mh-excerpt-more\" href=\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/\" title=\"Introduction to JavaScript || Client Side Scripting || BCIS Notes\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":3,"featured_media":696,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[227,226,228],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Introduction to JavaScript || Client Side Scripting || BCIS Notes<\/title>\n<meta name=\"description\" content=\"JavaScript is the most popular and widely used client-side scripting language. It refers to scripts that run within your web browser.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Introduction to JavaScript || Client Side Scripting || BCIS Notes\" \/>\n<meta property=\"og:description\" content=\"JavaScript is the most popular and widely used client-side scripting language. It refers to scripts that run within your web browser.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/\" \/>\n<meta property=\"og:site_name\" content=\"BCIS Fourth Semester\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-21T05:49:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-10.png\" \/>\n\t<meta property=\"og:image:width\" content=\"340\" \/>\n\t<meta property=\"og:image:height\" content=\"230\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Her Highness\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Her Highness\" \/>\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:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/\"},\"author\":{\"name\":\"Her Highness\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/fcc10e27b06f3f95367e914911b47eb3\"},\"headline\":\"Introduction to JavaScript || Client Side Scripting || BCIS Notes\",\"datePublished\":\"2021-04-21T05:49:39+00:00\",\"dateModified\":\"2021-04-21T05:49:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/\"},\"wordCount\":882,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#organization\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-10.png\",\"keywords\":[\"Client Side Scripting\",\"JavaScript\",\"Server Side Scripting\"],\"articleSection\":[\"IT\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/\",\"name\":\"Introduction to JavaScript || Client Side Scripting || BCIS Notes\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-10.png\",\"datePublished\":\"2021-04-21T05:49:39+00:00\",\"dateModified\":\"2021-04-21T05:49:39+00:00\",\"description\":\"JavaScript is the most popular and widely used client-side scripting language. It refers to scripts that run within your web browser.\",\"breadcrumb\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#primaryimage\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-10.png\",\"contentUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-10.png\",\"width\":340,\"height\":230,\"caption\":\"Introduction to JavaScript || Client Side Scripting || BCIS Notes\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/bcisnotes.com\/fourthsemester\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Introduction to JavaScript || Client Side Scripting || BCIS Notes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#website\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/\",\"name\":\"BCIS Fourth Semester\",\"description\":\"Notes of Information and Technology\",\"publisher\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/bcisnotes.com\/fourthsemester\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#organization\",\"name\":\"BCIS Fourth Semester\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/02\/cropped-4-1.jpg\",\"contentUrl\":\"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/02\/cropped-4-1.jpg\",\"width\":300,\"height\":100,\"caption\":\"BCIS Fourth Semester\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/fcc10e27b06f3f95367e914911b47eb3\",\"name\":\"Her Highness\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9f5c6e84ebb073447dba2985b41b0fdc?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9f5c6e84ebb073447dba2985b41b0fdc?s=96&d=mm&r=g\",\"caption\":\"Her Highness\"},\"sameAs\":[\"http:\/\/bcisnotes.com\/fourthsemester\"],\"url\":\"https:\/\/bcisnotes.com\/fourthsemester\/author\/jaya\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Introduction to JavaScript || Client Side Scripting || BCIS Notes","description":"JavaScript is the most popular and widely used client-side scripting language. It refers to scripts that run within your web browser.","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:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/","og_locale":"en_US","og_type":"article","og_title":"Introduction to JavaScript || Client Side Scripting || BCIS Notes","og_description":"JavaScript is the most popular and widely used client-side scripting language. It refers to scripts that run within your web browser.","og_url":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/","og_site_name":"BCIS Fourth Semester","article_published_time":"2021-04-21T05:49:39+00:00","og_image":[{"width":340,"height":230,"url":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-10.png","type":"image\/png"}],"author":"Her Highness","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Her Highness","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#article","isPartOf":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/"},"author":{"name":"Her Highness","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/fcc10e27b06f3f95367e914911b47eb3"},"headline":"Introduction to JavaScript || Client Side Scripting || BCIS Notes","datePublished":"2021-04-21T05:49:39+00:00","dateModified":"2021-04-21T05:49:39+00:00","mainEntityOfPage":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/"},"wordCount":882,"commentCount":0,"publisher":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/#organization"},"image":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-10.png","keywords":["Client Side Scripting","JavaScript","Server Side Scripting"],"articleSection":["IT"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/","url":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/","name":"Introduction to JavaScript || Client Side Scripting || BCIS Notes","isPartOf":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#primaryimage"},"image":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-10.png","datePublished":"2021-04-21T05:49:39+00:00","dateModified":"2021-04-21T05:49:39+00:00","description":"JavaScript is the most popular and widely used client-side scripting language. It refers to scripts that run within your web browser.","breadcrumb":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#primaryimage","url":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-10.png","contentUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/04\/bcis-10.png","width":340,"height":230,"caption":"Introduction to JavaScript || Client Side Scripting || BCIS Notes"},{"@type":"BreadcrumbList","@id":"https:\/\/bcisnotes.com\/fourthsemester\/introduction-to-javascript-client-side-scripting-bcis-notes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bcisnotes.com\/fourthsemester\/"},{"@type":"ListItem","position":2,"name":"Introduction to JavaScript || Client Side Scripting || BCIS Notes"}]},{"@type":"WebSite","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#website","url":"https:\/\/bcisnotes.com\/fourthsemester\/","name":"BCIS Fourth Semester","description":"Notes of Information and Technology","publisher":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bcisnotes.com\/fourthsemester\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#organization","name":"BCIS Fourth Semester","url":"https:\/\/bcisnotes.com\/fourthsemester\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/logo\/image\/","url":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/02\/cropped-4-1.jpg","contentUrl":"https:\/\/bcisnotes.com\/fourthsemester\/wp-content\/uploads\/2021\/02\/cropped-4-1.jpg","width":300,"height":100,"caption":"BCIS Fourth Semester"},"image":{"@id":"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/fcc10e27b06f3f95367e914911b47eb3","name":"Her Highness","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/fourthsemester\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9f5c6e84ebb073447dba2985b41b0fdc?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9f5c6e84ebb073447dba2985b41b0fdc?s=96&d=mm&r=g","caption":"Her Highness"},"sameAs":["http:\/\/bcisnotes.com\/fourthsemester"],"url":"https:\/\/bcisnotes.com\/fourthsemester\/author\/jaya\/"}]}},"_links":{"self":[{"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/posts\/695"}],"collection":[{"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/comments?post=695"}],"version-history":[{"count":1,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/posts\/695\/revisions"}],"predecessor-version":[{"id":697,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/posts\/695\/revisions\/697"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/media\/696"}],"wp:attachment":[{"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/media?parent=695"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/categories?post=695"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bcisnotes.com\/fourthsemester\/wp-json\/wp\/v2\/tags?post=695"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}