QUOTENAME in JS
Description
Sample Source Pattern
Implementation Example
function QUOTENAME(string, quote){
return quote.concat(string, quote);
}Arguments
Return Type
Examples
Last updated
Was this helpful?