🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › JavaScript › Reference › Global_Objects › Array › some
Array.prototype.some() - JavaScript | MDN
1 week ago - The some() method of Array instances returns true if it finds an element in the array that satisfies the provided testing function. Otherwise, it returns false.
Discussions

[AskJS] Some advice on web scraping with Javascript.
Hey man, just went to that market place and looked in chrome dev tools. Looks like a single page application that is making API calls to populate the front end. Here’s an example of the API they are calling https://data.thetanarena.com/thetan/v1/nif/search?sort=PPB&batPercentMin=60&from=32&size=32 If you look at the url change as you browse the site you will see how each of those query parameters change. Go to the link I posted in the browser and you will see that the data is available in JSON form anyway so no need to scrape the site. Be friendly with your API calls please and have an experiment with changing different parameters, you should be able to figure out the effect each has. More on reddit.com
🌐 r/javascript
12
11
August 15, 2021
[AskJS] What are some advanced Javascript concepts/methods one needs to know before learning frameworks?
In the real world, concepts are invented to solve a problem someone once had. Get out of the academic mind set, search for problems instead and it'll open up the world of concepts for you. More on reddit.com
🌐 r/javascript
19
23
June 1, 2022
What are some good advanced JS books?
  • You don't know JavaScript series by Kyle Simpson Goes deep into internals of JavaScript in a very understandable manner, I think they're great

  • Programming JavaScript Applications by Eric Elliot Chapters 2 and 3 are superb and will show you the advantages of real Prototypal JS

  • JavaScript Allonge by @raganwald Functional JavaScript, excellent, specially the first half.

More on reddit.com
🌐 r/javascript
20
35
April 15, 2014
Why are some Django devs against JavaScript?
It is not that we are against js, but some people just refuse to accept the fact that Django is a full stack framework, Model View Template. The choice is a design decision, that is up to the web application developer or team. Django predates React, Angular and VueJS, and worked perfectly fine on its own for numerous projects. Django - July 2005 Angular - October 2010 React - May 2013 Vuejs - February 2014 It has its own template system which is specifically front end. You can also drop in Jinja2 if you want an other template language. What we often find frustrating, all this information is found on the official Django website. https://docs.djangoproject.com/en/4.0/faq/ As for question 2, at least partially, adding js to the existing templates is full stack Django. And at times it can be challenging. Django is used as a back-end only when it is used to create an API, most commonly utilizing DRF. Then a complete frontend is created with React, VueJS.... More on reddit.com
🌐 r/djangolearning
24
14
October 15, 2021
🌐
GitHub
github.com › zloirock › core-js
GitHub - zloirock/core-js: Standard Library
Modular standard library for JavaScript. Includes polyfills for ECMAScript up to 2025: promises, symbols, collections, iterators, typed arrays, many other features, ECMAScript proposals, some cross-platform WHATWG / W3C features and proposals like URL.
Starred by 25.5K users
Forked by 1.7K users
Languages   JavaScript
🌐
Medium
d7k.medium.com › js-includes-vs-some-b3cd546a7bc3
JS .includes() vs .some(). JavaScript array is a powerful data… | by Ashan Dhananjaya | Medium
November 20, 2019 - The function .some() iterates through each an every element of the array by applying comparison logic. It will abort the iteration immediately as soon as it finds the first item that returns true during the comparison.
🌐
Boston University
bu.edu › housing › wp-content › themes › r-housing › js › vendor › pannellum › pannellum.htm
Pannellum
Javascript is required to view this panorama. (It could be worse; you could need a plugin.)
🌐
W3Schools
w3schools.com › jsref › jsref_some.asp
JavaScript Array some() Method
❮ Previous JavaScript Array Reference ... age > 18; } Try it Yourself » · The some() method checks if any array elements pass a test (provided as a callback function)....
Find elsewhere
🌐
Fjolt
fjolt.com › article › javascript-array-some
Javascript Array Some Method
some works like a loop - it loops over every element and checks if the callback function you gave returns true for any of them. element and index let us check each element individually in our function, while array gives us easy access to the ...
🌐
TypeScript
typescriptlang.org › docs › handbook › typescript-in-5-minutes.html
TypeScript: Documentation - TypeScript for JavaScript Programmers
There is already a small set of primitive types available in JavaScript: boolean, bigint, null, number, string, symbol, and undefined, which you can use in an interface. TypeScript extends this list with a few more, such as any (allow anything), unknown (ensure someone using this type declares ...
🌐
HackerNoon
hackernoon.com › a-deep-dive-into-the-javascript-some-method
A Deep Dive Into the JavaScript Some() Method | HackerNoon
July 5, 2023 - The some() method determines if at least one array member satisfies the test defined by the given function.
🌐
Reality Ripple
udn.realityripple.com › docs › Web › JavaScript › Reference › Global_Objects › Array › some
Array.prototype.some() - JavaScript
The some() method executes the callback function once for each element present in the array until it finds the one where callback returns a truthy value (a value that becomes true when converted to a Boolean). If such an element is found, some() immediately returns true.
🌐
JavaScript Tutorial
javascripttutorial.net › home › javascript array methods › array.prototype.some()
JavaScript Array some() Method
November 8, 2024 - The code works as expected. However, it is quite verbose. The Array type provides an instance method some() that allows you to test if an array has at least one element that meets a condition.
🌐
DigitalOcean
digitalocean.com › community › tutorials › using-every-and-some-to-manipulate-javascript-arrays
How To Use .every() and .some() to Manipulate JavaScript Arrays | DigitalOcean
December 12, 2019 - Almost every usage of MFR where you need to exit early and not comb through the entire collection is a prime candidate for .some() or .every(), because they both short-circuit and exit the array iteration as early as possible, instead of running till the end and potentially wasting compute resources. In a time when we are building more complex apps and shipping more bytes to the client, resulting in significant overhead to parse JavaScript (see TTI, anything we can do to have three iterations (due to short-circuit) instead of thirty is highly welcome.
🌐
Programiz
programiz.com › javascript › library › array › some
Javascript Array some() (with Examples)
In the above example, we have used the some() method to find out whether any element of the ageArray array contains a value less than 18.
🌐
Medium
medium.com › poka-techblog › simplify-your-javascript-use-some-and-find-f9fb9826ddfd
Simplify your JavaScript – Use .some() and .find() | by Etienne Talbot | poka-techblog | Medium
September 5, 2019 - Well, you pass .some() a function as the argument. That function runs for each value in the array. You can then see if the value fits the condition you’ve written. The function must return a boolean (although a truthy/falsy value works as well). As soon as one true is returned, .some() will itself return true.
🌐
Code.org
code.org › en-US › tools › app-lab
App Lab | Create Apps with JavaScript – No Experience Needed
Design an app, code in JavaScript with either blocks or text, then share your app in seconds. ... Extensive documentation detailing specific functionality and use is available for App Lab. ... Explore some project guides for App Lab to get started with building apps using Javascript!
🌐
Ultimate Courses
ultimatecourses.com › blog › array-some-javascript
Exploring Array Some in JavaScript - Ultimate Courses
Follow along with the Exploring JavaScript Array Methods series! ... Array Some is a method that exists on the Array.prototype that was introduced in ECMAScript 5 (ES5) and is supported in all modern browsers.
🌐
RSC Publishing
pubs.rsc.org › en › Content › ArticleLanding › 2026 › EM › D6EM00053C
Antibiotic toxicity screening on seedling emergence: beyond traditional species - Environmental Science: Processes & Impacts (RSC Publishing)
1 day ago - Some global trends were observed; fluoroquinolones (ciprofloxacin, enrofloxacin, ofloxacin) stimulated germination and root growth in legumes and grasses, while black knapweed (Centaurea nigra) consistently exhibits germination reductions (30–53%) and root growth inhibition under all antibiotic exposures.
🌐
TutorialsPoint
tutorialspoint.com › home › javascript › javascript array some() method
JavaScript Array some() Method
September 1, 2008 - In JavaScript, the Array.some() method takes a callback function and verifies whether at least one element in the array passes the test provided by the callback function. If at least one element passes the test, it returns "true".