Home >Web Front-end >JS Tutorial >Instructions for using the buffer.length method in node.js_node.js

Instructions for using the buffer.length method in node.js_node.js

WBOY
WBOYOriginal
2016-05-16 16:27:181885browse

Method description:

This method will return the length of the buffer object.

Grammar:

Copy code The code is as follows:

buffer.length

Receive parameters:

None

Example:

Copy code The code is as follows:

buf = new Buffer(1234);
console.log(buf.length);
buf.write("some string", 0, "ascii");
console.log(buf.length);
// 1234
// 1234
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn