Modules

filter

 

Objects/Functions

module (N/format/i18n)

SuiteScript 2.0

format.Currency

// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=format.Currency for more information.

N/format/i18n Module
format.Currency
Enum Description: Holds the values for the currency code.
Type: enum
Module: N/format/i18n Module
Sibling Module Members: N/format/i18n Module Members
Since: 2019.1
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=format.Currency

Example:

// Code Example 1
// Add additional code
//...
require(['N/format/i18n'],
function(format) {
log.debug("List of valid currencies:");
for (var currency in format.Currency) {
log.debug(currency);
}
});...
// Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_1558027087.html