Use the tool online:
for (x in myObj.items) {
var description = myObj.items[x].snippet.description;
var emailRegex = /[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}/g;
var emails = description.match(emailRegex);
if (emails) {
for (var i = 0; i < emails.length; i++) {
document.write(emails[i] + '\n');
}
}
}