Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6356475
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T22:58:12+00:00 2026-05-24T22:58:12+00:00

How to implement array.any() and array.all() methods in Coffeescript?

  • 0

How to implement array.any() and array.all() methods in Coffeescript?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T22:58:13+00:00Added an answer on May 24, 2026 at 10:58 pm

    Those are actually part of Javascript 1.6 and will work just the same in CoffeeScript. You want some and every.

    I don’t know what environment you’re in, but IE < 9 doesn’t seem to support those methods. They’re pretty easy to add. There’s a snippet of code on those pages that show you compatibility code and if you want you can translate them to CoffeeScript, though you don’t have to.

    A cruder, simpler way would be (untested):

    if not Array.prototype.some
        Array.prototype.some = (f) -> (x for x in @ when f(x)).length > 0
    
    if not Array.prototype.every
        Array.prototype.every = (f) -> (x for x in @ when f(x)).length == @length
    

    But neither of those have short circuit logic. Edit: But see Ricardo’s answer for a better version of them.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How would I implement a binary search using just an array?
I've got a polymorphic array of objects which implement two (informal) interfaces. I want
It is often useful to implement algorithms using nested array operations. For example, to
I have just noticed that a multidimensional array in C# does not implement IEnumerable<T>
I'm trying to write an array of objects that implement Parcelable into a Parcel
I need to use (not implement) an array based version of Dijkstras algo .The
Is there a simple way to retrieve the length of an associative array (implemented
Task: implement paging of database records suitable for different RDBMS. Method should work for
To implement data access code in our application we need some framework to wrap
I need to implement a Diff algorithm in VB.NET to find the changes between

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.