Node.js examples for String:Base 64
Convert byte Array To String
function byteArrayToString(byteArray){ // Otherwise, fall back to 7-bit ASCII only var result = ""; for (var i=0; i<byteArray.byteLength; i++){ result += String.fromCharCode(byteArray[i]) }/*from w ww . ja v a 2 s . co m*/ return result; }