Alan
09/10/2024, 2:20 PMAlan
09/10/2024, 2:20 PMAlan
09/10/2024, 2:21 PMfunction myfunc(numeric id = null)
CF doesn't like the use of null
and I also can't do function myfunc(numeric id) {
and pass null
into it because cf states 'null' is not numericAlan
09/10/2024, 2:22 PM-1
unless someone has any other suggestionsAlan
09/10/2024, 2:24 PMapplication.cfc
component{
this.nullSupport = true;
}
but I don't wanna do thatAdam Cameron
and passJust don't mention that param at all. Don't pass it anything. Then deal withinto itnull
if (isNull(id))
in the method if you need to