
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
7K+ Views
The Remove Element By Id In JavaScript method is a powerful tool for manipulating the DOM (Document Object Model). It allows you to remove elements from the page by their id. This can be useful when removing unwanted elements or creating dynamic content on the fly. The syntax is simple, ... Read More

Yaswanth Varma
711 Views
In this article we are going to learn about how to repeat a string in JavaScript. We can find the three different ways to repeat a string in JavaScript they are listed below. using a while loop using recursion using ES6 repeat() method Let’s dive into the ... Read More

Yaswanth Varma
1K+ Views
Template literals are a powerful and useful feature of the ECMAScript 6 (ES6) JavaScript language. However, there may be times when template literals do not work properly in your code. This article will discuss some common issues you may encounter with template literals, as well as potential solutions for resolving ... Read More

Yaswanth Varma
3K+ Views
As we are familiar with the subtraction of two float values and we know how to use the subtraction condition between float values. To correctly subtract two float values, use parseFloat() along with toFixed(). Let’s dive into the article to learn more about JavaScript subtraction of two float values. ... Read More

Yaswanth Varma
2K+ Views
A class serves as a model for building objects. Code is used to encapsulate data, so that it can be worked on. Although JS classes are based on prototypes, they also have some unique syntax and semantics that are not shared by ES5 classes. Let’s dive into the article to ... Read More

Yaswanth Varma
131 Views
In JavaScript, objects can be created and assigned properties in a variety of ways. One popular approach is to use the shortest syntax to assign properties from a function call to an existing object. In this article, we will explore how to use this technique and discuss some considerations when ... Read More

Yaswanth Varma
9K+ Views
Null values can be tricky to work with in JavaScript, but they are an important part of the language. In this article, we will discuss various ways you can check if there is a null value in an object or array in JavaScript. The null values display that no object ... Read More

Yaswanth Varma
771 Views
JavaScript scroll down loops can be extremely annoying and disruptive to a web page. Fortunately, it is relatively easy to stop the loop if you know what steps to take. In this article, we will discuss how to stop the JavaScript scroll down loop so that your website visitors don't ... Read More

Yaswanth Varma
2K+ Views
Getting the inner text of an HTML element is a common task when developing web applications. In JavaScript, it can be done using the innerText property of the HTMLElement object. However, this only returns the text within that particular element and not any of its child elements. If you ... Read More

Yaswanth Varma
4K+ Views
In this article we are going to learn about JavaScript display the result of a function as HTML. In JavaScript, a function is similar to a procedure—a collection of statements that carry out an action or compute a value. However, in order for a procedure to be considered a function, ... Read More