Concat Value Helper

Helper method used to concatenate values in a JavaScript Template Literal.

This helper also uses IS NULL helper.

Concat Helper Function Definition

Helper method used to concatenate values in a JavaScript Template Literal. This is necessary to check if values are null or not. Oracle handles null values as empty strings in concatenations.

var concatValue = (arg) => IS_NULL(arg) ? "" : arg;

Last updated