Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 744 Bytes

properties.get.md

File metadata and controls

26 lines (18 loc) · 744 Bytes

properties.get

The get function is established to get data from the efw.properties file.

Sample

var bln = properties.get("efw.login.check", false);
var str = properties.get("efw.login.key");

API

CallingReturning
properties . get ( key )String
properties . get ( key , defaultValue ){any} *The type of defaultValue
ParametersTypeDescription
keyStringTo idetify the property info.
defaultValue{any}The default value if no property is defined in the efw.properties file.