Resolved! Get field value of GlideRecord (best practice method)
var gr = new GlideRecord('incident');gr.addQuery('active', 'true');gr.query();if (gr.next()){ // This way ? gr.sys_id; // Or this way ? gr.getValue('sys_id');}Which is safest/best method to get the value? Dotwalk the gr object or use the bu...