![]() |
VOOZH | about |
The v8.Serializer.writeValue() method is an inbuilt application programming interface of the v8.Serializer module which is used to write the serialized data of JS value to the internal buffer.
Syntax:v8.Serializer.writeValue(Value);
Parameters: This method one parameter as described below and mentioned above.
Return Value: This method writes serialized representation of JS value to the internal buffer and returns true on successfully writing.
Below examples illustrate the use of v8.Serializer.writeValue() method in Node.js.
Example 1: Filename: index.js Run index.js file using the following command:node index.jsOutput:
trueExample 2: Filename: index.js Run index.js file using the following command:
node index.jsOutput:
<Buffer > true <Buffer 22 0d 67 65 65 6b 73 66 6f 72 67 65 65 6b 73> true <Buffer 4e 1f 85 eb 51 78 31 c2 40>Reference: https://nodejs.org/api/v8.html#v8_serializer_writevalue_value