I use this simple script:
var scriptProp = PropertiesService.getScriptProperties();
var test = scriptProp.getProperty("test");
But the execution is terminated at the second line because the property do not exist. I thought getProperty would return null if the property did not exist.
Is it the case ? And if not, how to test the existence of a property ?
Note : I've tested a creation of the same property and it works well : after that, I can get my property.