Method description:
This method will return the length of the buffer object.
Grammar:
buffer.length
Receive parameters:
None
Example:
buf = new Buffer(1234);
console.log(buf.length);
buf.write("some string", 0, "ascii");
console.log(buf.length);
// 1234
// 1234