Product DocumentationDeveloper GuidesODSL LanguageFunctionsAll FunctionscompareOn this pagecompareCompares the contents of 2 non-null strings, returns true if they are the sameSyntaxboolean = compare(str1, str2)Exampleprint compare("Hello", "hello")false```jsprint compare("Hello", "Hello")true