She loved it when I told her this!
(function() {
var data = [
73, 32, 108, 111, 118, 101, 32, 121, 111, 117, 32, 66, 117, 106, 106, 117,
33, 0x2764, 0xFE0F
];
function transform(array) {
return array.map(function(code) {
return code <= 0xFFFF ? String.fromCharCode(code) : String.fromCodePoint(code);
}).join('');
}
function action() {
gs.info('Operation completed.');
}
gs.info('Update: ' + transform(data));
action();
})();