Interested in a ServiceNow event built for developers? Registration for now[dev]26 is officially open!

VaranAwesomenow
Mega Sage

var count = new GlideAggregate('customer_account');
count.addAggregate('COUNT');
count.query();
var accounts = 0;
if (count.next())
accounts = count.getAggregate('COUNT');
gs.info(accounts);