Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • TypeScript
  • Vue.js
  • D3.js
  • Collect.js
  • Underscore.js
  • Moment.js
  • Ember.js
  • Tensorflow.js
  • Fabric.js
  • JS Formatter
  • JavaScript
  • Web Technology
Open In App
Next Article:
Ember.js EmberArray find() Method
Next article icon

Ember.js EmberArray isAny() Method

Last Updated : 18 Jan, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

Ember.js is an open-source JavaScript framework used for developing large client-side web applications which is based on Model-View-Controller (MVC) architecture. Ember.js is one of the most widely used front-end application frameworks. It is made to speed up development and increase productivity. Currently, it is utilized by a large number of websites, including Square, Discourse, Groupon, Linked In, Live Nation, Twitch, and Chipotle.

The isAny() method is used to check if anyone of the item in the array has the desired value or not.

Syntax:

isAny( key, value );

Parameters:

  • key: It is the property name that we want to check.
  • value: It is the value to test against. The default value is true.

Returns: True if, for any one of the items in the array, the passed property resolves to the desired value.

To run the following examples you will need to have an ember project with you. To create one, you will need to install ember-cli first. Write the below code in the terminal:

npm install ember-cli

Now you can create the project by typing in the following piece of code:

ember new <project-name> --lang en

To start the server, type:

ember serve

Example 1: Type the following code to generate the route for this example:

ember generate route isAny1
app/routes/isAny1.js
import Route from '@ember/routing/route';  export default class DetailsRoute     extends Route {     details = [         {             name: 'Aaksh',             mobile: '9811129967',             city: 'Delhi',             country: 'India',             gender: 'M',             zipCode: '800020',         },         {             name: 'Sweta',             mobile: '9456712890',             city: 'Mumbai',             country: 'India',             gender: 'F',             zipCode: '400001',         },         {             name: 'Satyam',             mobile: '2222222222',             city: 'Raipur',             country: 'India',             gender: 'M',             zipCode: '110012',         },         {             name: 'Shandya',             mobile: '1122113322',             city: 'Bangalore',             country: 'India',             gender: 'F',             zipCode: '530068',         },         {             name: 'Ayushi',             mobile: '2244668800',             city: 'Thana',             country: 'India',             gender: 'F',             zipCode: '302001',         },     ];     someMoreDetails = [         {             name: 'Yogesh',             mobile: '1133557799',             city: 'Chennai',             country: 'India',             gender: 'F',             zipCode: '600001',         },         {             name: 'Sunny',             mobile: '9911000000',             city: 'Masore',             country: 'India',             gender: 'M',             zipCode: '574142',         },         {             name: 'Khushi',             mobile: '8888888888',             city: 'Pune',             country: 'India',             gender: 'F',             zipCode: '111045',         },     ];     city;     name;     code;     model() {         return this.details;     }     setupController(controller, model) {         super.setupController(controller, model);         controller.set('details', this.details);         controller.set('someMoreDetails',             this.someMoreDetails);         controller.set('city', this.city);         controller.set('code', this.code);         controller.set('name', this.name);     } } 
app/controllers/isAny1.js
import Ember from 'ember'; import { addObjects, shiftObject, setEach }     from '@ember/array';  export default Ember.Controller.extend({     actions: {         checkCity(city) {             this.details.isAny('city', city) ?                 alert(`Yes Person from ${city} is present`) :                 alert(`List does not contains person        from city`);         },         checkName(name) {             this.details.isAny('name', name) ?                 alert(`Yes Person of Name ${name} is        present`) :                 alert(`List does not contains person        of given Name`);         },         checkCode(code) {             this.details.isAny('zipCode', code) ?                 alert(`Yes List contains Person with zipCode        ${code}`) :                 alert(`List does not contains person         from provided data`);         },     }, }); 
app/templates/isAny1.hbs
{{page-title "Details"}} <h3>List of People: </h3> <br /><br /> <table>     <tr>         <th>Name</th>         <th>Gender</th>         <th>Mobile</th>         <th>City</th>         <th>Country</th>         <th>Zip Code</th>     </tr>     {{#each @model as |detail|}}     <tr>         <td>{{detail.name}}</td>         <td>{{detail.gender}}</td>         <td>{{detail.mobile}}</td>         <td>{{detail.city}}</td>         <td>{{detail.country}}</td>         <td>{{detail.zipCode}}</td>     </tr>     {{/each}} </table>  <br /><br /> <div>     <label>Enter City: </label>     {{input value=this.city}} </div> <div>     <input type="button" id="check-city"          value="Check Someone from City"          {{action 'checkCity' this.city}} /> </div> <br /><br /> <div>     <label>Enter zipCode: </label>     {{input value=this.code}} </div> <div>     <input type="button" id="check-code"          value="Check Someone from Zip-Code"          {{action 'checkCode' this.code}} /> </div><br /><br /> <div>     <label>Enter Name: </label>     {{input value=this.name}} </div> <div>     <input type="button" id="check-name"          value="Check Someone by Name"          {{action 'checkName' this.name}} /> </div> {{outlet}} 

Output: Visit localhost:4200/isAny1 to view the output

Ember.js EmberArray isAny method

Example 2: Type the following code to generate the route for this example:

ember generate route isAny2
app/routes/isAny2.js
import Route from '@ember/routing/route'; import { } from '@ember/array';  export default class FruitsRoute     extends Route {     item1 = [         {             name: 'Apple',             isFruit: true,             color: 'red',         },         {             name: 'Grapes',             isFruit: true,             color: 'green',         },         {             name: 'Mango',             isFruit: true,             color: 'yellow',         },         {             name: 'Watermelon',             isFruit: true,             color: 'red',         },         {             name: 'Orange',             isFruit: true,             color: 'orange',         },     ];     item2 = [         {             name: 'Lady Finger',             isFruit: false,             color: 'green',         },         {             name: 'Brinjal',             isFruit: false,             color: 'purple',         },         {             name: 'Potato',             isFruit: false,             color: 'brown',         },         {             name: 'Onion',             isFruit: false,             color: 'violet',         },     ];     model() {         return this.item1;     }     setupController(controller, model) {         super.setupController(controller, model);         controller.set('item1', this.item1);         controller.set('item2', this.item2);     } } 
app/controllers/isAny2.js
import Ember from 'ember'; import { pushObjects, isAny } from '@ember/array';  export default Ember.Controller.extend({     actions: {         Check_item() {             let ans = this.item1.isAny('isFruit', true);             ans ? alert(`Yes it contains Fruit`)                 : alert(`It doesn't contains any Fruit`)         },         Check_item2() {             let ans = this.item1.isAny('isFruit', false);             ans ? alert(`Yes it contains Vegatabe`) :                 alert(`It doesn't contains any Vegetable`)         },         pushMoreDetails() {             this.item1.pushObjects(this.item2);         },     }, }); 
app/templates/isAny2.hbs
{{page-title "Fruits"}} <table style=" border-spacing : 30px">     <h3>Here is a Bucket: </h3>     <ul>         {{#each @model as |eatable|}}         <li>{{eatable.name}}</li>         {{/each}}     </ul> </table> <br /><br /> <input type="button" id="fruit-all"      value="List Contains Any Fruit?"      {{action 'Check_item' }} /> <br /><br /> <input type="button" id="fruit-notAll"      value="List Contains Any Vegetables?"      {{action 'Check_item2' }} />  <br /><br /> <input type="button" id="push-details"      value="Add More Details"      {{action 'pushMoreDetails' }} /> {{outlet}} 

Output: Visit localhost:4200/isAny2 to view the output

Ember.js EmberArray isAny method

Reference: https://api.emberjs.com/ember/4.6/classes/EmberArray/methods/isAny?anchor=isAny


Next Article
Ember.js EmberArray find() Method

S

satyam00so
Improve
Article Tags :
  • Web Technologies
  • Node.js
  • Ember.js
  • Ember.js Methods
  • Ember.js Classes

Similar Reads

  • Ember.js EmberArray find() Method
    Ember.js is an open-source JavaScript framework used for developing large client-side web applications based on Model-View-Controller (MVC) architecture. Ember.js is one of the most widely used front-end application frameworks. It is made to speed up development and increase productivity. Currently,
    5 min read
  • Ember.js EmberArray findBy() Method
    Ember.js is an open-source JavaScript framework used for developing large client-side web applications which are based on Model-View-Controller (MVC) architecture. Ember.js is one of the most widely used front-end application frameworks. It is made to speed up development and increase productivity.
    4 min read
  • Ember.js EmberArray isEvery() Method
    Ember.js is an open-source JavaScript framework used for developing large client-side web applications which is based on Model-View-Controller (MVC) architecture. Ember.js is one of the most widely used front-end application frameworks. It is made to speed up development and increase productivity. C
    4 min read
  • Ember.js EmberArray invoke() Method
    Ember.js is an open-source JavaScript framework used for developing large client-side web applications which are based on Model-View-Controller (MVC) architecture. Ember.js is one of the most widely used front-end application frameworks. It is made to speed up development and increase productivity.
    3 min read
  • Ember.js EmberArray indexOf() Method
    Ember.js is an open-source JavaScript framework used for developing large client-side web applications which is based on Model-View-Controller (MVC) architecture. Ember.js is one of the most widely used front-end application frameworks. It is made to speed up development and increase productivity. C
    3 min read
  • Ember.js EmberArray every() Method
    Ember.js is an open-source JavaScript framework used for developing large client-side web applications which is based on Model-View-Controller (MVC) architecture. Ember.js is one of the most widely used front-end application frameworks. It is made to speed up development and increase productivity. C
    4 min read
  • Ember.js EmberArray includes() Method
    Ember.js is an open-source JavaScript framework used for developing large client-side web applications which is based on Model-View-Controller (MVC) architecture. Ember.js is one of the most widely used front-end application frameworks. It is made to speed up development and increase productivity. C
    4 min read
  • Ember.js EmberArray filterBy() Method
    Ember.js is an open-source JavaScript framework used for developing large client-side web applications based on Model-View-Controller (MVC) architecture. Ember.js is one of the most widely used front-end application frameworks. It is made to speed up development and increase productivity. Currently,
    5 min read
  • Ember.js EmberArray filter() Method
    Ember.js is an open-source JavaScript framework used for developing large client-side web applications which is based on Model-View-Controller (MVC) architecture. Ember.js is one of the most widely used front-end application frameworks. It is made to speed up development and increase productivity. C
    5 min read
  • Ember.js EmberArray getEach() Method
    Ember.js is an open-source JavaScript framework used for developing large client-side web applications which is based on Model-View-Controller (MVC) architecture. Ember.js is one of the most widely used front-end application frameworks. It is made to speed up development and increase productivity. C
    4 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
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
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences