- or download this
# Provide an empty string as the default value if the
# menu item value isn't provided.
my $menu_item = param('menu_item')
// '';
- or download this
# Provide an empty string as the default value if the
# menu item value isn't provided.
...
$_ = param('menu_item');
my $menu_item = defined() ? $_ : '';
- or download this
$menu_item = defined() ? $_ : '' for (param('menu_item');