Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
32.7K+ articles
DSA
20.1K+ articles
JavaScript
10.1K+ articles
TypeScript
597+ articles
JavaScript-DSA
499+ articles
javascript-array
344+ articles
javascript-basics
166+ articles
WebTech-FAQs
98+ articles
JavaScript-Boolean
9+ articles
JavaScript Facts
4+ articles
JavaScript-QnA
26 posts
Recent Articles
Popular Articles
How to Check if an Element Exists in an Array in JavaScript?
Last Updated: 07 November 2024
Given an array, the task is to check whether an element present in an array or not in JavaScript. If the element present in array, then it returns true, otherwise returns ...
read more
JavaScript
Web Technologies
JavaScript-QnA
WebTech-FAQs
JavaScript - What is RegExp Object?
Last Updated: 05 December 2024
The RegExp object in JavaScript is a powerful tool for pattern matching, searching, and manipulating strings. It allows you to define patterns for matching text and helps ...
read more
JavaScript
Web Technologies
JavaScript-RegExp
JavaScript-QnA
WebTech-FAQs
What is Type Annotations in TypeScript ?
Last Updated: 21 January 2025
TypeScript Type Annotations allow developers to explicitly define the types of variables, functions, and other elements in the program.They help catch mistakes early by en...
read more
TypeScript
JavaScript-QnA
WebTech-FAQs
TypeScript Enums
Last Updated: 20 March 2025
TypeScript Enums allows you to create a list of constants (unchanging variables) and give them easy-to-remember names. These names make your code easier to read and unders...
read more
TypeScript
JavaScript-QnA
WebTech-FAQs
What is Callback Hell in JavaScript ?
Last Updated: 15 February 2025
One of the primary ways to manage asynchronous operations in JavaScript is through callback functions that execute after a certain operation completes. However, excessive ...
read more
JavaScript
Web Technologies
JavaScript-QnA
WebTech-FAQs
How to Declare Variables in TypeScript ?
Last Updated: 09 July 2024
In TypeScript, a variable can be defined by specifying the data type of the value it is going to store. It will store the values of the specified data type only and throws...
read more
JavaScript
Web Technologies
JavaScript-QnA
WebTech-FAQs
Interfaces in TypeScript
Last Updated: 11 March 2025
TypeScript is a statically typed superset of JavaScript that adds optional types, classes, interfaces, and other features to help developers build robust and maintainable ...
read more
JavaScript
Web Technologies
JavaScript-QnA
WebTech-FAQs
Reverse Only the Odd Length Words using JavaScript
Last Updated: 17 May 2024
Given a string containing words separated by spaces, our task is to reverse only the words with an odd length. The rest of the words remain unchanged. Example:Input:Hello...
read more
JavaScript
Web Technologies
Picked
JavaScript-QnA
JavaScript - Append Array At The Beginning Of Another Array
Last Updated: 28 November 2024
Here are the various approaches to append an array at the beginning of another array in JavaScriptUsing unshift() Method - Most CommonUses the unshift() method to add elem...
read more
JavaScript
Web Technologies
javascript-array
JavaScript-DSA
JavaScript-QnA
JavaScript Object Interview Questions
Last Updated: 22 November 2024
JavaScript objects are fundamental data structures used to store collections of data in key-value pairs. They are essential for handling more complex data and are often us...
read more
JavaScript
Web Technologies
javascript-object
JavaScript-QnA
JavaScript - Append Array At The End Of Another Array
Last Updated: 28 November 2024
Here are the different approaches to append an array at the end of another array in JavaScriptpush() Method with Spread Operator - Most UsedIt uses push() combined with th...
read more
JavaScript
Web Technologies
javascript-array
JavaScript-DSA
JavaScript-QnA
Interesting Facts About JavaScript Data Types
Last Updated: 23 June 2025
JavaScript (often abbreviated as JS) is one of the most popular programming languages in the world. It comes with its unique take on data types that sets it apart from lan...
read more
JavaScript
Web Technologies
javascript-basics
JavaScript Facts
JavaScript-QnA
Products/Apps Built Using JavaScript
Last Updated: 11 December 2024
JavaScript, one of the most versatile programming languages, powers various products and applications across multiple industries. JavaScript has become the backbone of mod...
read more
JavaScript
Web Technologies
javascript-basics
JavaScript-QnA
How is a JavaScript Hash Map Implemented?
Last Updated: 20 December 2024
A HashMap (also known as a dictionary or hash table in other programming languages) is a collection of key-value pairs Each key in the HashMap is unique, and each key maps...
read more
JavaScript
Web Technologies
javascript-map
JavaScript-QnA
Get Unicode Character Value in JavaScript
Last Updated: 03 January 2025
Here are various ways to get Unicode character values in JavaScript 1. Using charCodeAt() to Get Unicode ValuesThis code defines a string letter containing the character "...
read more
JavaScript
Web Technologies
javascript-basics
JavaScript-QnA
1
2
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !