SFU.isEmpty()
- Last UpdatedJun 25, 2024
- 1 minute read
Use isEmpty() method to determine if the value specified is empty.
Syntax
bRetVal = SFU.isEmpty(value);
Parameters
|
Parameter |
Description |
|---|---|
|
value |
Value to check. |
Return Value
This method returns a boolean value.
Example
// Define a variable and check if the specified value is empty.
var employeeNameVal = control.findByXmlNode("EmployeeName").value;
var valEmpty = SFU.isEmpty(employeeNameVal);