Exam Name: | Salesforce Certified B2C Commerce Developer (SU24) | ||
Exam Code: | B2C-Commerce-Developer Dumps | ||
Vendor: | Salesforce | Certification: | Developers |
Questions: | 203 Q&A's | Shared By: | elise |
A client has three different sites with three locales. Two of the sites share a library and one site has a private library.
What does the shared library allowin this context?
A Digital Developer is implementing an Open Commerce API call to add products to a basket. Given the following resource configuration:
Which modification allows the requests to successfully execute?
Given a file in a plug-in cartridge with the following code:
‘use strict’:
Var base = module.superModule;
Function applyCustomCache (req,res,next){
res.CachePeriod = 6; //eslint-disable-line no-param-reassign
res.cachePeriodUnit = ‘hours’) //eslint-disable-line no-param-reassign
next();
}
Module.exports = base;
Module.exports.applyCustomCache = applyCustomCache;
What does this code extend?