The provide
function send data to client to provide the return value of Efw function.
var result = new Result();
result.provide({a:1,b:2});
Calling | Returning |
---|---|
result. provide ( data ) |
Result |
Parameters | Type | Description |
---|---|---|
data |
String \| Number \| Boolean \| Date \| Object \| Array |
The information you want to send to client. |