Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
difference between "" and ''
when using strings, should we use "" or '', and what is the difference between them? plus I wanna ask about the communication API nlapiSendEmail, is it executed in real time, since I have sent the the email via this API, but I have not got the email.
var myInternalID = 9234;
var receipt = 'frank198705@sina.com';
var subject = 'For Test Purpose';
var texts = "";
var cc = "j.lee@studiopilote.com,nancy@studiopilote.com";
for( var i = 0; i < customers.length; i++ )
{
var element = customers[i];
texts = texts + element.getId() + " ";
texts = texts + element.getValue( 'entity' ) + " ";
texts = texts + element.getValue( 'email' ) + " ";
texts = texts + element.getValue( 'total' ) + " ";
0