
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
1K+ Views
The ability to multiply only specific values in a JavaScript object can be a useful tool for performing calculations or making modifications to data. By using the map() and reduce() methods, you can quickly go through an entire object and make changes to any value that meets certain criteria. This ... Read More

Yaswanth Varma
2K+ Views
In this article, we will be discussing how to set up pin validation using JavaScript. We will cover topics such as creating a prompt for users to enter their pin number, validating the user's input against a stored value, and returning an appropriate response based on the result of the ... Read More

Yaswanth Varma
3K+ Views
By using JavaScript’s native array methods and functions, we can easily create custom sorting algorithms that will work for any type of object. In this article, we will discuss how to use these techniques in order to sort an object's key-value pairs by value. A key-value pair in JavaScript ... Read More

Yaswanth Varma
4K+ Views
Let us learn about "how to replace spaces with underscores in JavaScript". This is a useful technique for formatting strings that contain multiple words, and can be used in many different situations. We'll look at some other ways of achieving the same result as well as potential pitfalls you ... Read More

Yaswanth Varma
2K+ Views
An ordered group of indexed elements is represented by an array, which is a type of data structure. Merging two or more arrays to create a larger array that contains all the items from the original arrays is a typical operation done on multiple arrays. In JavaScript, there are several ... Read More

Yaswanth Varma
647 Views
JavaScript is a popular scripting language used to create interactive websites and applications. It has many powerful features that make it easy to use and extendable. This can be useful for validating user input on forms or other data-driven tasks where you want to ensure the user enters a ... Read More

Yaswanth Varma
3K+ Views
Regex (or Regular Expressions) is used to match patterns in strings of text. With JavaScript, you can use regex to dynamically replace data based on matched patterns. This article will explain how to use regex and JavaScript together to make dynamic replacements in your code. We'll cover the basics ... Read More

Yaswanth Varma
2K+ Views
Are you looking for ways to convert an integer to binary in JavaScript? If so, this article is for you! In this article, we will discuss the various methods available for converting an integer into its binary equivalent using JavaScript. We’ll look at how a number can be broken ... Read More

Yaswanth Varma
2K+ Views
Comparing two arrays in JavaScript can be tricky when the key is a string. String comparisons are case-sensitive and require special handling to ensure proper results. Fortunately, there are several methods you can use to compare two arrays when the key is a string in JavaScript. In this article, ... Read More

Yaswanth Varma
4K+ Views
Testing if a parameter is provided to a function in JavaScript is an important part of writing effective code. It allows you to ensure that the arguments passed into your functions are valid and properly formatted for use within the function. In this article, we will discuss different methods for ... Read More