[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-29 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eEQUALS\u003c/code\u003e function compares a specified value with an existing value and returns \u003ccode\u003eTRUE\u003c/code\u003e if they match, otherwise \u003ccode\u003eFALSE\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe function can be used with Boolean, Double, Integer, and String data types.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eEQUALS\u003c/code\u003e can be used to check if a variable equals a specified string, such as \u003ccode\u003e$var1$.EQUALS("Apigee Integrations")\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eEQUALS\u003c/code\u003e can also be used to compare numerical values, like in the example \u003ccode\u003e$var1$.EQUALS(23)\u003c/code\u003e to compare integers.\u003c/p\u003e\n"]]],[],null,["# EQUALS function\n\nSee the [supported connectors](/integration-connectors/docs/connector-reference-overview) for Application Integration.\n\nEQUALS function\n===============\n\n`EQUALS` function\n-----------------\n\nSupported data type\n-------------------\n\n\nThe `EQUALS` function supports the following data types:\n\n- Boolean\n- Double\n- Integer\n- String\n\nExample 1: Compare two strings\n------------------------------\n\n\n**Sample data** : `$var1$ = \"Apigee Integrations\"`\n\n\n**Usage** : `$var1$.EQUALS(\"Apigee Integrations\")`\nCheck if var1 equals \"Apigee Integrations\".\n\n\n**Output** : `TRUE`\n\nExample 2: Compare two integers\n-------------------------------\n\n\n**Sample data** : `$var1$ = 34`\n\n\n**Usage** : `$var1$.EQUALS(23)`\nCheck if var1 equals 23.\n\n\n**Output** : `FALSE`\n\nRecommendation\n--------------\n\n- Learn how to add and configure a [Data Mapping task](/application-integration/docs/configure-data-mapping-task)"]]