Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 636 Bytes

properties.get.md

File metadata and controls

22 lines (16 loc) · 636 Bytes

properties.get

The get function retrieves data from the efw.properties file.

Sample

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

API

Calling Returning
properties. get ( key ) String
properties. get ( key, defaultValue ) String | Number | Boolean (The type of defaultValue)
Parameters Type Description
key String Identifies the property.
defaultValue String | Number | Boolean The default value if the property is not defined in the efw.properties file.