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