- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Abhishek has Published 65 Articles

Abhishek
2K+ Views
Generally, the ID given to any element in an HTML document is unique and can be assign to an element only once. But it is possible to change that id later using the JavaScript following the same rule of uniqueness for new ID as well as only single element can ... Read More

Abhishek
109 Views
While programming in any programming language, it is very general to do the mistakes in the logic building or in following the syntax rules of a language, which results in formation of errors and failure of our code to perform every task as expected. In this article, we are going ... Read More

Abhishek
3K+ Views
There are two types of variables can be declared in any programming languages in context of their accessing scope. The Local variable and the Global variable. Global Scoped Variables − The global scoped variables are the variables which are declared globally inside the code file and can be accessed by ... Read More

Abhishek
417 Views
JavaScript call() method is used to call a function with another object as the first argument. The call() method in JavaScript is a type of method that is used to write a function that can be used on different objects. The functionality of the call() method is almost similar to ... Read More

Abhishek
109 Views
The apply() method is used to create a method that can be used with different objects. We can use this method to call the functions of any object with some arguments. In this article, we will discuss about the apply() method in JavaScript Parameter − It accepts the values in ... Read More

Abhishek
1K+ Views
Objects in JavaScript are different from the Global Object. Using the new operator, you cannot create global objects. It comes into existence when the scripting engine is initialized. After it is initialized, the functions and constants are available for use. A global object allows you to do the following − ... Read More

Abhishek
163 Views
The Unary Negation Operator first converts the operand into a number, and after that it negates. It operates on a single operand. It returns the negation of the operand. A boolean operand is converted to 0 or 1, and then negation is done. Similarly, a number with a base other ... Read More

Abhishek
351 Views
The objective of a switch statement is to give an expression to evaluate and several different statements to execute based on the value of the expression. The interpreter checks each case against the value of the expression until a match is found. If nothing matches, a default condition will be ... Read More

Abhishek
1K+ Views
The subtraction operator is also known as the minus operator. It is a binary operator that means it requires at least two operands to operate on. It will not work with a single operand. Generally, the subtraction operator subtracts or minus the value of the second operand from the first ... Read More

Abhishek
65 Views
In JavaScript, the Number.toExponential() method returns a string of a number representing the given number in its exponential form. This method is basically used to convert a number to its exponential form. Syntax The following syntax will show you how you can use the Number.toExponential() method to convert a number ... Read More