Learn JavaScript on the Now Platform: Lab 6a - Functions and arrays

preview_player
Показать описание
This lab exercise challenges you to demonstrate your mastery of arrays and simple ServiceNow database operations to create a list of records.

Рекомендации по теме
Комментарии
Автор

var list = [];
var gr = new GlideRecord ('incident');
gr.query();

while (gr.next()) {
list.push
}
gs.info ('list=\n' + list.join('\n'));

jagdishc
join shbcf.ru