Work with binary data using Node.js Buffer.
Sample Input:
"Hello World"
Sample Output:
{"type":"Buffer","data":[72,101,108,108,111,32,87,111,114,108,100]}Hints
Hint 1
Use Buffer.from() to create buffer
Hint 2
Use buffer.toString() to convert back
Hint 3
Handle different encodings