<?LassoScript
define_tag: 'status', -Required='param';
local: 'theVar'=(action_params);
local: 'theRecordMap'= (map);
loop: (#theVar->size);
local: 'tempElement'=(#theVar->(get: (loop_count)));
#theRecordMap->(insert: (#tempElement->First)=(#tempElement->Second));
/loop;
local: 'keys' = #theRecordMap->keys;
local: 'status' = 'false';
loop: (#keys->size);
if: (#keys->(get:loop_count)==#param);
local: 'status'='true';
/if;
/loop;
return: #status;
/define_tag;
?>
Sample Usage script
if((status: -param='age')=='true');
Variable: 'agerange' = (Action_Param:'age');
/if;