AreNotEqual(value1, value2) Last updated: 21. Dec 2022

Checks that two values are not equal.

Parameters

Name Type Description
value1 object Value to compare with value2
value2 object Value to compare with value1

Returns

True if not equal, false if equal.

Example

Code example (#JS)

#JS is mixed HTML (or other text file) with inline JavaScript with # starting and ending each inline statement.
#AreNotEqual("test", "asdf")#

Output

The #JS code above produces the output shown below:
True