localValue
Parameters
Example Usages
app.localValue("myKey", "Hello World"); //Save the value "Hello World" under the key "myKey"
let x = app.localValue("myKey"); //Retrieve the Key "myKey". This will result in "Hello World"
console.log(x);Return Values
Last updated