🎓 Top 15 Udemy Courses (80-90% Discount): My Udemy Courses - Ramesh Fadatare — All my Udemy courses are real-time and project oriented courses.
▶️ Subscribe to My YouTube Channel (178K+ subscribers): Java Guides on YouTube
▶️ For AI, ChatGPT, Web, Tech, and Generative AI, subscribe to another channel: Ramesh Fadatare on YouTube
In this chapter, we will explore the findIndex() method for arrays in TypeScript. This method is a built-in function that helps in finding the index of the first element in an array that satisfies a provided testing function. Understanding how to use findIndex() is useful for locating the position of elements within arrays based on specific criteria.
Table of Contents
- Definition
- Syntax
- Examples
- Conclusion
1. Definition
The findIndex() method returns the index of the first element in the provided array that satisfies the provided testing function. If no elements satisfy the testing function, -1 is returned.
2. Syntax
array.findIndex(callback(element, index, array), thisArg?);
Parameters
callback: A function to execute on each value in the array, taking three arguments:element: The current element being processed in the array.index(optional): The index of the current element being processed in the array.array(optional): The arrayfindIndexwas called upon.
thisArg(optional): Object to use asthiswhen executingcallback.
Return Value
The method returns the index of the first element in the array that satisfies the provided testing function. Otherwise, it returns -1.
3. Examples
Let's look at some examples to understand how findIndex() works in TypeScript.
Example 1: Basic Usage
In this example, we find the index of the first element in the array that is greater than 10.
let numbers: number[] = [5, 12, 8, 130, 44];
let result = numbers.findIndex((num) => num > 10);
console.log(result); // Output: 1
Example 2: Finding the Index of an Even Number
In this example, we find the index of the first even number in the array.
let numbers: number[] = [1, 3, 7, 8, 5];
let result = numbers.findIndex((num) => num % 2 === 0);
console.log(result); // Output: 3
Example 3: Using Index and Array in Callback
In this example, we use the index and the array itself within the callback function to find an element.
let numbers: number[] = [1, 3, 7, 8, 5];
let result = numbers.findIndex((num, index, arr) => {
console.log(`Element: ${num}, Index: ${index}, Array: ${arr}`);
return num > 6;
});
console.log(result); // Output: 2
// Console will also log each element, index, and array.
Example 4: Finding the Index of an Object in an Array
In this example, we find the index of the first object in an array with a specific property value.
interface Person {
name: string;
age: number;
}
let people: Person[] = [
{ name: "Ravi", age: 25 },
{ name: "Ankit", age: 30 },
{ name: "Priya", age: 28 },
];
let result = people.findIndex((person) => person.age > 25);
console.log(result); // Output: 1
Example 5: No Match Found
In this example, we use findIndex() with a condition that no elements satisfy, resulting in -1.
let numbers: number[] = [1, 3, 5, 7];
let result = numbers.findIndex((num) => num > 10);
console.log(result); // Output: -1
4. Conclusion
In this chapter, we covered findIndex() method definition, syntax, parameters, return value, and provided several examples to demonstrate its usage. Understanding how to use findIndex() effectively can help in various array manipulation tasks in TypeScript, especially when locating the position of elements within arrays based on specific criteria.
My Top and Bestseller Udemy Courses. The sale is going on with a 70 - 80% discount. The discount coupon has been added to each course below:
Build REST APIs with Spring Boot 4, Spring Security 7, and JWT
[NEW] Learn Apache Maven with IntelliJ IDEA and Java 25
ChatGPT + Generative AI + Prompt Engineering for Beginners
Spring 7 and Spring Boot 4 for Beginners (Includes 8 Projects)
Available in Udemy for Business
Building Real-Time REST APIs with Spring Boot - Blog App
Available in Udemy for Business
Building Microservices with Spring Boot and Spring Cloud
Available in Udemy for Business
Java Full-Stack Developer Course with Spring Boot and React JS
Available in Udemy for Business
Build 5 Spring Boot Projects with Java: Line-by-Line Coding
Testing Spring Boot Application with JUnit and Mockito
Available in Udemy for Business
Spring Boot Thymeleaf Real-Time Web Application - Blog App
Available in Udemy for Business
Master Spring Data JPA with Hibernate
Available in Udemy for Business
Spring Boot + Apache Kafka Course - The Practical Guide
Available in Udemy for Business
Comments
Post a Comment
Leave Comment