Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
demo_met_buffer_tostring.js:
var buf = Buffer.from('abc'); console.log(buf.toString()); //Display the Buffer without converting it into a String: console.log(buf);
C:\Users\My Name>node demo_met_buffer_tostring.js
abc
<Buffer 61 62 63>