You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creates and returns a `jerry_value_t` with type null object.
7240
7244
7245
+
*Notes*:
7246
+
- The null value is a fixed constant. Its value can be copied any number of times without calling
7247
+
[jerry_acquire_value](#jerry_acquire_value), and freeing it with [jerry_release_value](#jerry_release_value) is optional.
7248
+
7241
7249
**Prototype**
7242
7250
7243
7251
```c
@@ -8176,6 +8184,10 @@ main (void)
8176
8184
8177
8185
Creates a `jerry_value_t` representing an undefined value.
8178
8186
8187
+
*Notes*:
8188
+
- The undefined value is a fixed constant. Its value can be copied any number of times without calling [jerry_acquire_value](#jerry_acquire_value), and freeing it with [jerry_release_value](#jerry_release_value) is optional.
0 commit comments