setString
- syntax:
$$setString("name",$value)- first argument:
- type: String
- description: set to property name
- second argument:
- type: String
- description: value that copy
- first argument:
- type:
- String or Object
- description:
- set property to copied value
Example
{
"value": "hello"
}
jfol:
$$setString("value2",$value)$$json
result:
{
"value": "hello",
"value2": "hello"
}