I am getting a response from a SOAP server and it is an array of bytes, fixed size.
For instance, I get { rsp: { errorNumber: '1', errorMessage: { item: [Object] } } }
[ '73',
  '110',
  '118',
  '97',
  '108',
  '105',
  '100',
  '32',
  '112',
  '97',
  '115',
  '115',
  '119',
  '111',
  '114',
  '100',
  '0']
How do I turn that array to a string it javascript?
 
     
     
     
     
    