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.
7462
7466
7467
+
*Notes*:
7468
+
- The null value is a fixed constant. Its value can be copied any number of times without calling
7469
+
[jerry_acquire_value](#jerry_acquire_value), and freeing it with [jerry_release_value](#jerry_release_value) is optional.
7470
+
7463
7471
**Prototype**
7464
7472
7465
7473
```c
@@ -8398,6 +8406,10 @@ main (void)
8398
8406
8399
8407
Creates a `jerry_value_t` representing an undefined value.
8400
8408
8409
+
*Notes*:
8410
+
- 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