Question 76 of 10076%
76

What does this code log?

const buf = Buffer.from("abc");

console.log(buf);
console.log(buf.toString());
console.log(buf.length);
76/100