{"id":1692,"date":"2019-12-16T07:03:46","date_gmt":"2019-12-16T07:03:46","guid":{"rendered":"https:\/\/studysection.com\/blog\/?p=1692"},"modified":"2019-12-16T07:07:44","modified_gmt":"2019-12-16T07:07:44","slug":"a-fast-paced-introduction-to-javascript-for-beginners","status":"publish","type":"post","link":"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/","title":{"rendered":"A fast-paced introduction to Javascript for beginners"},"content":{"rendered":"<p>JavaScript is a very powerful client-side scripting language. It is used for enhancing the interaction of a user with the webpage. We can make our pages more lively and interactive with the use of Javascript. We can modify the contents of forms, change the images, open new windows and write dynamic page content. Some beginners may think Javascript is related to java. But it has nothing to do with Java. It is a completely different language.<\/p>\n<h2>Advantages of JavaScript<\/h2>\n<ul>\n<li><strong>Data Validation<\/strong> \u2212 You can validate user inputs before sending the data of the forms to the server. <\/li>\n<li><strong>Immediate feedback to the visitors<\/strong> \u2212 Visitors see the issues on the page instantly hence they do not need to wait for the error coming from the server, hence less wait for the feedback.<\/li>\n<li><strong>Increased interactivity<\/strong> \u2212 You can create interfaces that are dynamic and change when the user hovers over elements with a mouse or presses a keyboard key.<\/li>\n<li><strong>Richer interfaces<\/strong> \u2212 You can use JavaScript to include drag-and-drop components and sliders to give a Rich Interface to your site visitors.<\/li>\n<\/ul>\n<h3>Implementation<\/h3>\n<p>JavaScript can be implemented using JavaScript statements that are placed within the &lt;script>&#8230; &lt;\/script> HTML tags on a web page. You can place the &lt;script> tags, containing your JavaScript, anywhere within <a href=\"https:\/\/studysection.com\/blog\/what-does-a-web-designer-do\/\">your web page<\/a>, but it is normally recommended that you should keep it within the &lt;head> tags.<br \/>\nThe script tag takes two important attributes \u2212 Language and Type<\/p>\n<pre>\r\n&lt;script language = \"javascript\" type = \"text\/javascript\">\r\n   JavaScript code\r\n&lt;\/script>\r\n<\/pre>\n<h3>Semicolons are Optional<\/h3>\n<p>JavaScript allows you to omit the semicolon if each of your statements is placed on a separate line.<\/p>\n<h3>Case Sensitivity<\/h3>\n<p>JavaScript is a case-sensitive language.<\/p>\n<h3>Comments in JavaScript<\/h3>\n<ul>\n<li>Any text between \/\/ and the end of a line is treated as a comment and is ignored by JavaScript.<\/li>\n<li>Any text between the characters \/* and *\/ is a comment. A comment may be of multiple lines.<\/li>\n<\/ul>\n<h3>JavaScript Data Types<\/h3>\n<p>JavaScript allows three primitive data types \u2212<\/p>\n<ul>\n<li>Numbers, eg. 123, 120.50, etc.<\/li>\n<li>Strings of text e.g. &#8220;This text string&#8221; etc.<\/li>\n<li>Boolean e.g. true or false.<\/li>\n<\/ul>\n<p>JavaScript also defines two other data types, <em>null<\/em> and <em>undefined<\/em>. In addition to these primitive data types, JavaScript supports a composite data type known as an object. It does not make a distinction between integer values and floating-point values.<\/p>\n<h3>JavaScript Variables<\/h3>\n<p>Before you use a variable in a <a href=\"https:\/\/www.studysection.com\/javascript-programming-foundation\">JavaScript program<\/a>, you should declare it. Variables can be declared using <em>Var<\/em> and <em>let<\/em> keyword. <em>let<\/em> allows you to declare variables that are limited to a scope of a block statement, or expression on which it is used, where the <em>var<\/em> keyword, defines a variable globally, or locally to an entire function regardless of block scope.<\/p>\n<h3>Javascript Operators<\/h3>\n<p>JavaScript supports the following types of operators.<\/p>\n<ul>\n<li>Arithmetic Operators<\/li>\n<li>Comparison Operators<\/li>\n<li>Logical (or Relational) Operators<\/li>\n<li>Assignment Operators<\/li>\n<li>Conditional (or ternary) Operators<\/li>\n<\/ul>\n<h3>Conditional Statements<\/h3>\n<p>JavaScript supports the following forms of if..else statement \u2212<\/p>\n<ul>\n<li>if statement<\/li>\n<li>if&#8230;else statement<\/li>\n<li>if&#8230;else if&#8230; statement.<\/li>\n<p><img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2019\/12\/javascript1.png\" alt=\"javascript1\" \/>\n<\/ul>\n<h3>Loop Statements<\/h3>\n<p>JavaScript supports the following forms of if..else statement \u2212<\/p>\n<ul>\n<li><strong>while loop<\/strong> &#8211; Execute statements in the loop while the condition is true.\n<pre>\r\nwhile (counter < 20) {\r\n  sum += counter;\/\/add counter to sum\r\n  counter++;\r\n}\r\n<\/pre>\n<\/li>\n<li><strong>do...while<\/strong> - Execute statements in the loop while the condition is true but first statements are executed and then the condition is checked. Hence even if condition is already false, the loop executes at least once.\n<pre>\r\ndo {\r\n  sum += counter;\/\/add counter to sum\r\n  counter++;\r\n} while (counter < 20)<\/li>\r\n<\/pre>\n<li><strong>'for' loop<\/strong> - Execute statements in the loop while the condition is true\n<pre>\r\nfor (counter=0;counter&lt;20;counter++) {\r\n  sum += counter;\/\/add counter to sum\r\n}\r\n<\/pre>\n<\/li>\n<\/ul>\n<h3>Functions<\/h3>\n<p>Functions contains a set of statements that accomplishes a certain task. Before we use a function, we need to define it. To define a function in JavaScript use the function keyword, followed by a unique function name, a list of parameters (that might be empty), and a statement block surrounded by curly braces.<br \/>\nFor example:<\/p>\n<pre>\r\nfunction calculateSum()\r\n{\r\n\tvar sum = 0;\r\nfor (counter=0; counter <20; counter++) {\r\n  \t\tsum += counter;\/\/add counter to sum\r\n\t} \r\nreturn sum;\r\n}\r\n<\/pre>\n<p>A JavaScript function can have an optional return statement. This is required if you want to return a value from a function. This statement should be the last statement in a function. The above function returns \u2018sum\u2019.<br \/>\nTo invoke a function you would simply need to write the name of that function<br \/>\nlike,<br \/>\n<em>calculateSum();<\/em><\/p>\n<h3>Function Parameters<\/h3>\n<p>There is a way to pass different parameters while calling a function. These passed parameters can be captured inside the function and any processing can be done using those parameters. This makes the function more powerful. For example:<\/p>\n<pre>\r\nfunction calculateSum(lastNumber)\r\n{\r\n\tvar sum = 0;\r\nfor (counter=0;counter&lt;lastNumber;counter++) {\r\n  \t\tsum += counter;\/\/add counter to sum\r\n\t} \r\nreturn sum;\r\n}\r\n<\/pre>\n<p>We can call the above function now for any last number instead of hardcoded 20.<br \/>\ncalculateSum(20);<br \/>\ncalculateSum(10);<br \/>\ncalculateSum(100);<\/p>\n<h3>Javascript Events<\/h3>\n<p>JavaScript functions can be called on HTML element events.<br \/>\nExamples: user clicks a button, pressing any key, closing a window, resizing a window, etc. Some frequently used event types are given below.<br \/>\n<strong>onclick<\/strong> - This is a commonly used event type that occurs when a user clicks the left button of his mouse. Example:<\/p>\n<pre>\r\n&lt;input type = \"button\" onclick = \"calculateSum(200)\" value = \"Calculate\" \/&gt;\r\n<\/pre>\n<p><strong>Onsubmit<\/strong> - is an event that occurs when you try to submit a form. You can put your form validation against this event type.<\/p>\n<pre>\r\nform method = \"POST\" action = \"t.cgi\" onsubmit = \"return validate()\">\r\n<\/pre>\n<h3>onmouseover and onmouseout<\/h3>\n<p>These two event types will help you create nice effects with images or even with text as well. The onmouseover event triggers when you bring your mouse over any element and the onmouseout triggers when you move your mouse out from that element.<\/p>\n<h3>DOM<\/h3>\n<p>The way a documented content is accessed and modified is called the Document Object Model, or DOM. The Objects are organized in a hierarchy.<br \/>\n<strong>Window -> Document -> Form -> Elements<\/strong><\/p>\n<ul>\n<li>Window \u2212 Top of the hierarchy. It is the outermost element of the object hierarchy.<\/li>\n<li>Document \u2212 Each HTML document that gets loaded into a window becomes a document object. The document contains the contents of the page.<\/li>\n<li>Form \u2212 Everything enclosed in the &lt;form>...&lt;\/form&gt; tags sets the form object.<\/li>\n<li>Form \u2212 The form object contains all the elements defined for that object such as text fields, buttons, radio buttons, and checkboxes.<\/li>\n<\/ul>\n<p><img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2019\/12\/javascript2.png\" alt=\"javascript2\"\/><\/p>\n<p><small><em>If you need to prove your skills in the .NET framework, get .NET certified on StudySection. StudySection provides <a href=\"https:\/\/www.studysection.com\/asp-.net-4.5-foundation\">.NET certification exam<\/a> for beginners as well as experts in the .NET framework. This .NET certification can improve your resume\u2019s success rate.<\/em><br \/>\n<\/small><\/p>\n","protected":false},"excerpt":{"rendered":"<p>JavaScript is a very powerful client-side scripting language. It is used for enhancing the interaction of a user with the<\/p>\n","protected":false},"author":1,"featured_media":1697,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[297,39,199,66,23],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SS Blog - A fast-paced introduction to Javascript for Beginners<\/title>\n<meta name=\"description\" content=\"JavaScript is a very powerful client-side scripting language. We can make our pages more lively and interactive using Javascript.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SS Blog - A fast-paced introduction to Javascript for Beginners\" \/>\n<meta property=\"og:description\" content=\"JavaScript is a very powerful client-side scripting language. We can make our pages more lively and interactive using Javascript.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog Posts on famous people, innovations and educational topics\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/studysection\" \/>\n<meta property=\"article:published_time\" content=\"2019-12-16T07:03:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-12-16T07:07:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2019\/12\/javascript-4523100_960_720.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"510\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin-studysection-blog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@studysection\" \/>\n<meta name=\"twitter:site\" content=\"@studysection\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin-studysection-blog\" \/>\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:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/\"},\"author\":{\"name\":\"admin-studysection-blog\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\"},\"headline\":\"A fast-paced introduction to Javascript for beginners\",\"datePublished\":\"2019-12-16T07:03:46+00:00\",\"dateModified\":\"2019-12-16T07:07:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/\"},\"wordCount\":997,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"keywords\":[\"beginners\",\"introduction\",\"JavaScript\",\"programming\",\"webdevelopment\"],\"articleSection\":[\"Learn and Grow\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/\",\"url\":\"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/\",\"name\":\"SS Blog - A fast-paced introduction to Javascript for Beginners\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/#website\"},\"datePublished\":\"2019-12-16T07:03:46+00:00\",\"dateModified\":\"2019-12-16T07:07:44+00:00\",\"description\":\"JavaScript is a very powerful client-side scripting language. We can make our pages more lively and interactive using Javascript.\",\"breadcrumb\":{\"@id\":\"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/studysection.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A fast-paced introduction to Javascript for beginners\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/studysection.com\/blog\/#website\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"name\":\"Blog Posts on famous people, innovations and educational topics\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/studysection.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/studysection.com\/blog\/#organization\",\"name\":\"StudySection\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"contentUrl\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"width\":920,\"height\":440,\"caption\":\"StudySection\"},\"image\":{\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/studysection\",\"https:\/\/twitter.com\/studysection\",\"https:\/\/www.instagram.com\/study.section\/\",\"https:\/\/www.linkedin.com\/company\/studysection\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\",\"name\":\"admin-studysection-blog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"caption\":\"admin-studysection-blog\"},\"url\":\"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SS Blog - A fast-paced introduction to Javascript for Beginners","description":"JavaScript is a very powerful client-side scripting language. We can make our pages more lively and interactive using Javascript.","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:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/","og_locale":"en_US","og_type":"article","og_title":"SS Blog - A fast-paced introduction to Javascript for Beginners","og_description":"JavaScript is a very powerful client-side scripting language. We can make our pages more lively and interactive using Javascript.","og_url":"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/","og_site_name":"Blog Posts on famous people, innovations and educational topics","article_publisher":"https:\/\/www.facebook.com\/studysection","article_published_time":"2019-12-16T07:03:46+00:00","article_modified_time":"2019-12-16T07:07:44+00:00","og_image":[{"width":960,"height":510,"url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2019\/12\/javascript-4523100_960_720.jpg","type":"image\/jpeg"}],"author":"admin-studysection-blog","twitter_card":"summary_large_image","twitter_creator":"@studysection","twitter_site":"@studysection","twitter_misc":{"Written by":"admin-studysection-blog","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/#article","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/"},"author":{"name":"admin-studysection-blog","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402"},"headline":"A fast-paced introduction to Javascript for beginners","datePublished":"2019-12-16T07:03:46+00:00","dateModified":"2019-12-16T07:07:44+00:00","mainEntityOfPage":{"@id":"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/"},"wordCount":997,"commentCount":0,"publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"keywords":["beginners","introduction","JavaScript","programming","webdevelopment"],"articleSection":["Learn and Grow"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/","url":"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/","name":"SS Blog - A fast-paced introduction to Javascript for Beginners","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/#website"},"datePublished":"2019-12-16T07:03:46+00:00","dateModified":"2019-12-16T07:07:44+00:00","description":"JavaScript is a very powerful client-side scripting language. We can make our pages more lively and interactive using Javascript.","breadcrumb":{"@id":"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/studysection.com\/blog\/a-fast-paced-introduction-to-javascript-for-beginners\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/studysection.com\/blog\/"},{"@type":"ListItem","position":2,"name":"A fast-paced introduction to Javascript for beginners"}]},{"@type":"WebSite","@id":"https:\/\/studysection.com\/blog\/#website","url":"https:\/\/studysection.com\/blog\/","name":"Blog Posts on famous people, innovations and educational topics","description":"","publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/studysection.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/studysection.com\/blog\/#organization","name":"StudySection","url":"https:\/\/studysection.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","contentUrl":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","width":920,"height":440,"caption":"StudySection"},"image":{"@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/studysection","https:\/\/twitter.com\/studysection","https:\/\/www.instagram.com\/study.section\/","https:\/\/www.linkedin.com\/company\/studysection"]},{"@type":"Person","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402","name":"admin-studysection-blog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","caption":"admin-studysection-blog"},"url":"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/"}]}},"views":355,"_links":{"self":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/1692"}],"collection":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/comments?post=1692"}],"version-history":[{"count":23,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/1692\/revisions"}],"predecessor-version":[{"id":1718,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/1692\/revisions\/1718"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media\/1697"}],"wp:attachment":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media?parent=1692"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/categories?post=1692"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/tags?post=1692"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}