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
Create a jerry_value_t representing a boolean value from the given boolean parameter.
6872
6872
6873
+
*Notes*:
6874
+
- 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.
Creates and returns a `jerry_value_t` with type null object.
7240
7243
7244
+
*Notes*:
7245
+
- 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.
7246
+
7241
7247
**Prototype**
7242
7248
7243
7249
```c
@@ -8176,6 +8182,10 @@ main (void)
8176
8182
8177
8183
Creates a `jerry_value_t` representing an undefined value.
8178
8184
8185
+
*Notes*:
8186
+
- 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