AppGyver
Changelog
Bugs and feature requests
AppGyver Academy
Search…
Home
Changelog
Start Learning Composer Pro
Troubleshooting — FAQ
SAP AppGyver on Business Technology Platform
Bugs and feature requests
Using Composer Pro
Introduction
The App Builder
User Interface
Creating user interfaces
Components
Navigation
Variable editor
Themes
App logic
App logic overview
Variables
Device sensors
Debugging
Events
Custom JavaScript
Data
File Uploads
Configuring data resources
REST API direct integration
Authentication
Google Firebase connector
Migrate AppGyver Cloud Storage to Firebase
Messaging
Push notifications
Publishing / Distribution
Build Service & Required assets
Reference
Flow functions reference
Formula functions reference
Bitwise
Color
Date
Engineering
Financial
List
BUILD_OBJECT
CONCAT
COUNT
DIFFERENCE
EVERY
EXACTLY_ONE
EXCLUDE_BY_KEY
EXCLUDE_BY_REGEX
FIND
FIND_BY_KEY
FIND_BY_REGEX
FIRST_ITEM
FLATTEN
GENERATE_RANGE
GROUP
INDEX_OF
INSERT_ITEMS_AT
INSERT_ITEM_AT
INTERSECTION
IS_IN_ARRAY
IS_IN_ARRAY_BY_KEY
LAST_ITEM
MAP
ORDER
PICK_ITEM
PLUCK
REDUCE
REDUCE_INIT
REMOVE_ITEM
REMOVE_ITEMS_AT
REMOVE_ITEM_BY_KEY
REPEAT
REVERSE
SELECT
SELECT_BY_KEY
SELECT_BY_REGEX
SET_ITEM
SET_ITEM_AT
SHUFFLE
SLICE
SOME
SORT
SORT_BY_KEY
SORT_BY_KEY_CASE_SENSITIVE
SORT_CASE_SENSITIVE
SPLICE
SUM_BY_KEY
SYMMETRIC_DIFFERENCE
UNION
UNIQUE_BY_KEY
WITHOUT_ITEM
WITH_ITEM
WITH_UNIQUE_ITEM
WITH_UNIQUE_ITEM_BY_KEY
ZIP
Math
Object
Statistical
Text
Utility
Page properties reference
Sensor variables reference
System variables reference
Style properties reference
Policies & Guidelines
Issue reporting guidelines
Legacy documentation
AppGyver Cloud Storage
Powered By
GitBook
IS_IN_ARRAY
Is the given item in the source list?
Description
Given a list and an item whose schema matches the list's schema, return
true
if exactly that item can be found in the list, or
false
if it is not found.
Function signature
1
IS_IN_ARRAY
(
list
:
Array
,
item
:
)
=>
Boolean
Copied!
Parameter
Description
List
List to check item
Item
Item to check
Examples
1
array
=
[
100
,
3
,
20
]
Copied!
Formula
Return value
IS_IN_ARRAY(array, 3)
true
IS_IN_ARRAY(array, 1)
false
IS_IN_ARRAY([100, 3, { a: 10 }], { a: 10 })
true
Previous
INTERSECTION
Next
IS_IN_ARRAY_BY_KEY
Last modified
1yr ago
Export as PDF
Copy link
Contents
Description
Function signature
Examples