This function converts a boolean value to an escaped JSON value.
Syntax
APEX_JSON.STRINGIFY (
    p_value  IN BOOLEAN,
RETURN VARCHAR2;
Parameters
Table 15-33 STRINGIFY Function Parameters
| Parameter | Description | 
|---|---|
| 
 | The boolean value to be converted. | 
Returns
Table 15-34 STRINGIFY Function Returns
| Return | Description | 
|---|---|
| 
 | The converted and escaped JSON value. | 
Example
This example demonstrates printing JSON boolean values.
BEGIN sys.htp.p(apex_json.stringify(true)); sys.htp.p(apex_json.stringify(false)); END;