...
Code Block | ||
---|---|---|
| ||
// Display's word hello in browser console.
console.log('hello');
// Show in the console object data from crm
const payload = await crmManager.getPayload();
console.log(`This is data from the payload ${payload}`); |
Variables
To define a variable, use the let
or const
keyword. Don’t use var
as it is a global variable and can conflict with interceptor, app and CRM.
...