Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Latest commit

 

History

History
25 lines (18 loc) · 740 Bytes

properties.get.md

File metadata and controls

25 lines (18 loc) · 740 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.