function retByteslen(taget){
var count,
len;
count = len = target.length;
for (var i =0; i< len; i++){
if (target.charCodeAt(i) > 255){
count ++;
}
}
console.log(count);
}
function retByteslen(taget){
var count,
len;
count = len = target.length;
for (var i =0; i< len; i++){
if (target.charCodeAt(i) > 255){
count ++;
}
}
console.log(count);
}