I have the following JSON,
{
"commands": [
{
"command":"begin ${{password}}",
"name":"Initialization",
"description":"Send SMS begin+password"
}
]
}
How can I pass data to ${{password}} to get the filled string using the passed value?
I tried to use interpolation function as described on the following topic but without any success.
Convert a string to a template string
Does Angular, Ionic provide some built-in functions for this?