I'm programming and want to create a variable only if it does not already exist.
Is there a way to express this with a single word?
For example, if the variable already exists, I have the options
- overwrite to overwrite the current value with a new value
- append to append new data to existing data
I'm searching for the word to express if the data already exists, leave it alone, otherwise take the given data.