
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
Rushi Javiya has Published 167 Articles

Rushi Javiya
220 Views
Learning a new programming language is an additional advantage to a developer. Before learning JavaScript, developers should get a basic idea of HTML and CSS. You will be wondering why it is essential to learn JavaScript. Other programming languages are also available in Information Technology. Of course, all programming languages ... Read More

Rushi Javiya
8K+ Views
What is a .GS file? The computer language Google Apps Script is related to the file extension GS. This JavaScript-based application is used to execute automated activities across all Google apps designed for producing online Web-based applications, such as programs that send personalized emails, instantly prepare and load Google Docs ... Read More

Rushi Javiya
159 Views
Like Java and JavaScript, these two programming languages will inevitably compete against one another in the future. The name is the first step. As some extension to Java, JavaScript was destined to be forever confused and frequently confused with Java. Given that both Java and JavaScript have the word "Java" ... Read More

Rushi Javiya
5K+ Views
JSON, or JavaScript Object Notation, is a simple format for exchanging data. It is a human−readable and machine−understandable format. It is based on a portion of Standard ECMA−262, Third Edition, December 1999's JavaScript Programming Language. Despite using conventions recognizable to programmers of the C family of languages (C, C++, Java, ... Read More

Rushi Javiya
179 Views
The ES6 is the latest JavaScript version which was introduced in 2015. We will learn about all the features of RegExp means regular expression, which Es6 contains. What is the Regular Expression and Usage of it The regular expression is a string representing the particular search pattern containing the different ... Read More

Rushi Javiya
8K+ Views
Promise.allSettled() is a method that takes an iterable of promises as an argument and returns a promise that is fulfilled when all of the promises in the iterable have been settled, meaning that they have either been fulfilled or rejected. When the returned promise is fulfilled, it is resolved with ... Read More

Rushi Javiya
6K+ Views
Simple operations like adding two numbers or string manipulation codes execute sequentially in JavaScript and return the results instantly. But while coding for real−world applications, we frequently make time−taking calls to databases, APIs, and other applications. These longer calls don’t return the results instantly; they will rather return a promise. ... Read More

Rushi Javiya
1K+ Views
We will learn about the Promise.race() method in this tutorial. As the name of the race() method suggests, promises passed as a parameter of the race() method do the race to execute. So, Whichever promise will be resolved first, will be executed only by the race() method, and other promises ... Read More

Rushi Javiya
897 Views
We will learn about any() method of the promise in this tutorial. In JavaScript, we can use the promises to handle the asynchronous request. Writing the asynchronous code in our application to fetch the data makes it faster as it executes the other code without waiting for the data. Promise.any() ... Read More

Rushi Javiya
869 Views
We can show the popup message to the app users using the popup box. We will learn about the different types of JavaScript popup boxes in this tutorial. There are three different types of popup boxes available in JavaScript below. Alert box Confirm box Prompt box We will ... Read More