<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>JavaScript Archives - TECHAntena</title>
	<atom:link href="https://www.techantena.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.techantena.com/category/javascript/</link>
	<description>Tech &#38; Programming Tutorials</description>
	<lastBuildDate>Wed, 15 Jun 2022 01:13:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.techantena.com/wp-content/uploads/2019/03/logo_icon.png</url>
	<title>JavaScript Archives - TECHAntena</title>
	<link>https://www.techantena.com/category/javascript/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">109684828</site>	<item>
		<title>Find Largest /Smallest /Second Largest /Second Smallest Elements of an Array JavaScript</title>
		<link>https://www.techantena.com/4904/largest-smallest-elements-array-javascript/</link>
					<comments>https://www.techantena.com/4904/largest-smallest-elements-array-javascript/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Wed, 15 Jun 2022 01:12:26 +0000</pubDate>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JavaScript Array]]></category>
		<category><![CDATA[JavaScript Examples]]></category>
		<category><![CDATA[JavaScript Snippets]]></category>
		<guid isPermaLink="false">https://www.techantena.com/?p=4904</guid>

					<description><![CDATA[<p>Here we discuss how to find the largest, smallest, second largest, second smallest elements of an array in JavaScript. Find Largest /Smallest Elements of an Array JavaScript var numbers = [12, 5, 6, 8, 7, 4, 26, 21, 23]; largest = numbers[0]; smallest = numbers[0]; second_largest = numbers[0]; second_smallest = numbers[0]; for(i=0; i&#60;numbers.length; i++){ //find [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/4904/largest-smallest-elements-array-javascript/">Find Largest /Smallest /Second Largest /Second Smallest Elements of an Array JavaScript</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/4904/largest-smallest-elements-array-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4904</post-id>	</item>
		<item>
		<title>Amazing HTML Dynamic Multi-Choice Quiz Using JavaScript</title>
		<link>https://www.techantena.com/4554/html-dynamic-multi-choice-quiz-using-javascript/</link>
					<comments>https://www.techantena.com/4554/html-dynamic-multi-choice-quiz-using-javascript/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Fri, 29 Sep 2017 17:40:32 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Dynamic Multi-Choice Quiz]]></category>
		<category><![CDATA[JavaScript Applications]]></category>
		<category><![CDATA[javascript form]]></category>
		<guid isPermaLink="false">https://www.techantena.com/?p=4554</guid>

					<description><![CDATA[<p>Today, here, I&#8217;m sharing you an amazing HTML dynamic multi-choice quiz using JavaScript and CSS. This will help you to create HTML Quiz application using JavaScript and CSS. In this JavaScript Quiz, if the selected answer is right, then the selection will become green. Otherwise, the selection will become red color and the right answer [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/4554/html-dynamic-multi-choice-quiz-using-javascript/">Amazing HTML Dynamic Multi-Choice Quiz Using JavaScript</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/4554/html-dynamic-multi-choice-quiz-using-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4554</post-id>	</item>
		<item>
		<title>HTML Form Validation Using JavaScript</title>
		<link>https://www.techantena.com/4547/html-form-validation-using-javascript/</link>
					<comments>https://www.techantena.com/4547/html-form-validation-using-javascript/#respond</comments>
		
		<dc:creator><![CDATA[Adeeb C]]></dc:creator>
		<pubDate>Sun, 24 Sep 2017 19:03:18 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[html form]]></category>
		<category><![CDATA[javascript form]]></category>
		<guid isPermaLink="false">https://www.techantena.com/?p=4547</guid>

					<description><![CDATA[<p>Do you want to validate your HTML form using JavaScript? Here is the JavaScript program to validate the HTML form contains the name, phone number, email, password, and confirm_password. HTML Form Validation Using JavaScript The below HTML form is validated using a function called ValidateForm in JavaScript code. &#60;html&#62; &#60;head&#62; &#60;title&#62;Form Validation Using JavaScript&#60;/title&#62; &#60;/head&#62; &#60;body&#62; [&#8230;]</p>
<p>The post <a href="https://www.techantena.com/4547/html-form-validation-using-javascript/">HTML Form Validation Using JavaScript</a> appeared first on <a href="https://www.techantena.com">TECHAntena</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.techantena.com/4547/html-form-validation-using-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4547</post-id>	</item>
	</channel>
</rss>
