buffer
const buf = Buffer.from('Hello, world!');const buf = Buffer.from([1, 2, 3, 4, 5]);const buf = Buffer.from(['a', 'b', 'c', 'd', 'e']);const fs = require('fs');
const buf = Buffer.from(fs.readFileSync('file.txt'));const str = buf.toString();const arr = buf.toJSON().data;const arr = buf.toString().split('');const buf1 = Buffer.from('Hello, ');
const buf2 = Buffer.from('world!');
const buf3 = Buffer.concat([buf1, buf2]);