
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Yaswanth Varma has Published 377 Articles

Yaswanth Varma
589 Views
In JavaScript, there is a array method that allows you to easily extract data from an array and assign it to new independent variables. This can be useful when working with large datasets or when needing to access specific values within an array quickly. In this article, we will explore ... Read More

Yaswanth Varma
1K+ Views
Multiple values can be kept in a single variable by using arrays. Compare that to a variable that only has room for one value. Each item in an array has a number associated with it that you may access by using, referred to as a numeric index. Arrays in JavaScript ... Read More

Yaswanth Varma
5K+ Views
Creating radio buttons dynamically using an array in JavaScript is a useful way to provide users with multiple options for input. When the user clicks on one of the radio buttons, it will be selected and any other choices will be deselected automatically. This process can be automated by looping ... Read More

Yaswanth Varma
17K+ Views
Showing and hiding elements is a common task in JavaScript. It can be used to create dynamic user interfaces, where the content changes depending on the user's input or interaction with the page. One way of doing this is to show a hidden div when a select option is selected. ... Read More

Yaswanth Varma
445 Views
In this article we are going to learn about replace whitespace in different elements with same class in JavaScript. Let’s look into the article to learn more about replacing whitespaces in different elements. Using split() and join() Methods The split() method divides a string into several substrings and returns them ... Read More

Yaswanth Varma
9K+ Views
When a user changes the value of an element, the , , and elements fire the change event. The change event does not always fire for every change to an element's value, unlike the input event. Instead, use querySelector() along with addEventListener(). Let’s discuss one by one to ... Read More

Yaswanth Varma
362 Views
In this article we are going to learn about “how to sort an array of integers correctly JavaScript”. Let’s look into the article to learn more about to sort an array. Sorting an array of integers is something that we’ve to do a lot in our JavaScript. The sort method ... Read More

Yaswanth Varma
3K+ Views
If you are working with currency values in your web application, it is important to convert them from a string representation into an actual numerical value. In this article, we will discuss how to do this using both jQuery and JavaScript. We will look at the different methods available for ... Read More

Yaswanth Varma
20K+ Views
In this article we are going to learn about detecting arrow key presses in JavaScript. Before we jump into the article, let’s discuss few things to know some information. There is a distinct key code for each key on the keyboard. Here, we'll check to see if the arrow key ... Read More

Yaswanth Varma
2K+ Views
One of the most useful features of JavaScript is the ability to get an entire document's HTML as a string. This can be used for many purposes, such as obtaining data from a website or creating dynamic content on your own website. In this article, we'll go over how to ... Read More