Reputation: 159
How to transfer Number to Character in Google Apps Script?
var test=(char)number;
Can't work....
Upvotes: 0
Views: 1014
Reputation: 692
You should use:
String.fromCharCode(number)
Upvotes: 1