if.not_equal
/ Conditionals / if.not_equal
Title | : | if.not_equal | |||||||||||
Purpose | : | For executing a certain code block when two values are not equal | |||||||||||
Syntax | : |
|
|||||||||||
Input Parameters | : | lhs: (any) (Required) Left hand side value
rhs: (any) (Required) Right hand side value |
|||||||||||
Return Value | : | (void) It won’t return anything, instead it will execute the codes
when the condition becomes true (which means lhs is not equal to rhs). |
|||||||||||
Example 1 | : |
|