Back
obfuscateParam()
Obfuscates a value. Typically used for hiding primary key values when passed along in the URL.
// Obfuscate the primary key value `99`
newValue = obfuscateParam(99);
Copied!