对象已移动

可在此处找到该文档 JavaScript Array Methods: find() [Article] – New Self New Life
New Self New Life
No Result
View All Result
  • Home
  • Entertainment
  • Celebrity
  • Cinema
  • Music
  • Digital Lifestyle
  • Social Media
  • Softwares
  • Devices
  • Home
  • Entertainment
  • Celebrity
  • Cinema
  • Music
  • Digital Lifestyle
  • Social Media
  • Softwares
  • Devices
New Self New Life
No Result
View All Result
Home Softwares

JavaScript Array Methods: find() [Article]

by admin
3 years ago
in Softwares
JavaScript Array Methods: find() [Article]
Share on FacebookShare on Twitter


Ever wanted to seek out or find a particular array merchandise? Fortunately for us, we’ve got a JavaScript methodology that may deal with that activity with ease. On this fast information, I’ll go over the discover() JavaScript array methodology. In the event you’re prepared, let’s get into it!

Lets begin with the MDN documentation:

MDN – discover()
The discover() methodology returns the primary ingredient within the offered array that satisfies the offered testing perform. If no values fulfill the testing perform, undefined is returned.

In keeping with the documentation, it seems to be like discover() returns the primary occasion of our logic that’s truthy. Let’s checkout some examples.

Think about the next array:

const numbers = [10, 20, 30, 40, 50]

Let’s say we wished to discover the primary worth on this array that’s higher than 25. We are able to do this fairly just by writing the next:

numbers.discover(num => num > 25)

This may return the very first merchandise that’s higher than 25. So 30 shall be returned. This methodology can even discover strings! Verify this out:

const customers = ['Alex', 'Taylor', 'Jamie']

console.log( customers.discover(person => person === 'Taylor') );

//anticipated output: 'Taylor'

As you’ll be able to see, it is a fairly straightforward methodology to make use of and may also help you find particular array gadgets simply. Usually you’ll additionally wish to pair this with the indexOf methodology or use the index parameter you’ve got entry to to retrieve the index of the returned array merchandise. I’ll present an instance beneath of each however if you happen to’d wish to study extra in regards to the indexOf array methodology, I’ll hyperlink beneath some assets.

JavaScript Fundamental Array Strategies – Weblog
JavaScript Fundamental Array Strategies – Video

Think about the next array:

const college students = ['Brian', 'Rohald', 'Travis']

Let’s say we wished to seek out out if “Rohald” is a pupil and if that’s the case, we wish to get again the array index that his identify falls into. We are able to write the next:

const selectedStudent = college students.discover(pupil => pupil === 'Rohald');
console.log(college students.indexOf(selectedStudent))

//anticipated output: 1

Now, right here is identical instance however utilizing the index parameter:

const college students = ['Brian', 'Rohald', 'Travis']

const selectedStudent = college students.discover((pupil, index) => {
    if (pupil === 'Travis') {
        console.log(index)
    }
})

Superior, now it’s best to know the best way to use the discover() methodology in your initiatives. I hope you’ll be able to really feel comfy utilizing this methodology going ahead as a result of it is going to absolutely pace up your workflow!

Till subsequent time, have enjoyable and completely happy coding!



Source link

Tags: arrayArticleFindJavaScriptMethods
Previous Post

Ashton Kutcher’s Brutally Honest Conversation With His Twin Brother

Next Post

YouTube Adds Chat Emotes, New Shorts Editing Tools and Automated Audio Dubbing in Other Languages

Related Posts

Google to mandate verification for all Android app developers
Softwares

Google to mandate verification for all Android app developers

by admin
August 26, 2025
Further Tab Button work and Chromium 140 – Vivaldi Browser snapshot 3787.3
Softwares

Further Tab Button work and Chromium 140 – Vivaldi Browser snapshot 3787.3

by admin
August 23, 2025
Find a Software Development Company in Europe
Softwares

Find a Software Development Company in Europe

by admin
August 24, 2025
Xero Salesforce Integration – The Definitive Guide
Softwares

Xero Salesforce Integration – The Definitive Guide

by admin
August 20, 2025
BrowserStack launches Chrome extension that bundles 10+ manual web testing tools
Softwares

BrowserStack launches Chrome extension that bundles 10+ manual web testing tools

by admin
August 18, 2025
Next Post
YouTube Adds Chat Emotes, New Shorts Editing Tools and Automated Audio Dubbing in Other Languages

YouTube Adds Chat Emotes, New Shorts Editing Tools and Automated Audio Dubbing in Other Languages

Lizzo’s Acceptance Speech at the 2022 PCAs

Lizzo's Acceptance Speech at the 2022 PCAs

  • Trending
  • Comments
  • Latest
10 Best Netflix Original Thriller Shows, Ranked

10 Best Netflix Original Thriller Shows, Ranked

June 22, 2025
Lil Nas X hospitalized in Los Angeles for ‘possible overdose,’ say reports – National

Lil Nas X hospitalized in Los Angeles for ‘possible overdose,’ say reports – National

August 22, 2025
Taylor Swift, Travis Kelce engaged as pop star reveals 1st glimpse of ring – National

Taylor Swift, Travis Kelce engaged as pop star reveals 1st glimpse of ring – National

August 27, 2025
Best AI Webcams For Video Calls In 2025

Best AI Webcams For Video Calls In 2025

August 21, 2025
Itch.io starts reindexing free NSFW content

Itch.io starts reindexing free NSFW content

August 1, 2025
Google to mandate verification for all Android app developers

Google to mandate verification for all Android app developers

August 26, 2025
20+ Best Titles Templates for DaVinci Resolve in 2025 — Speckyboy

20+ Best Titles Templates for DaVinci Resolve in 2025 — Speckyboy

August 22, 2025
Offset Blames Cooking and More for Failed Marriage to Cardi B

Offset Blames Cooking and More for Failed Marriage to Cardi B

August 23, 2025
Kiwi Ears Altruva Hi-Fi 50mm Dynamic Driver Headphones review

Kiwi Ears Altruva Hi-Fi 50mm Dynamic Driver Headphones review

August 27, 2025
Taylor Swift’s £18,000 engagement jewellery you might have missed

Taylor Swift’s £18,000 engagement jewellery you might have missed

August 27, 2025
All The Details On Taylor Swift’s Engagement Ring!!!

All The Details On Taylor Swift’s Engagement Ring!!!

August 27, 2025
Reddit Adds Trend Insights on Mobile, Guidebook for Brands

Reddit Adds Trend Insights on Mobile, Guidebook for Brands

August 27, 2025
Taylor Swift, Travis Kelce engaged as pop star reveals 1st glimpse of ring – National

Taylor Swift, Travis Kelce engaged as pop star reveals 1st glimpse of ring – National

August 27, 2025
Morgan Wallen Fined After Gillette Stadium Show Breaks Curfew

Morgan Wallen Fined After Gillette Stadium Show Breaks Curfew

August 26, 2025
Tatiana Zagorovski Sounds the Alarm with a New Book About How to Avoid Real Estate Scams

Tatiana Zagorovski Sounds the Alarm with a New Book About How to Avoid Real Estate Scams

August 26, 2025
Google to mandate verification for all Android app developers

Google to mandate verification for all Android app developers

August 26, 2025
New Self New Life

Your source for entertainment news, celebrities, celebrity news, and Music, Cinema, Digital Lifestyle and Social Media and More !

Categories

  • Celebrity
  • Cinema
  • Devices
  • Digital Lifestyle
  • Entertainment
  • Music
  • Social Media
  • Softwares
  • Uncategorized

Recent Posts

  • Kiwi Ears Altruva Hi-Fi 50mm Dynamic Driver Headphones review
  • Taylor Swift’s £18,000 engagement jewellery you might have missed
  • All The Details On Taylor Swift’s Engagement Ring!!!
  • Home
  • Disclaimer
  • DMCA
  • Privacy Policy
  • Cookie Privacy Policy
  • Terms and Conditions
  • Contact us

Copyright © 2021 New Self New Life.
New Self New Life is not responsible for the content of external sites. slotsfree  creator solana token

No Result
View All Result
  • Home
  • Entertainment
  • Celebrity
  • Cinema
  • Music
  • Digital Lifestyle
  • Social Media
  • Softwares
  • Devices

Copyright © 2021 New Self New Life.
New Self New Life is not responsible for the content of external sites.

New Self New Life