Concatenation in breakdown script
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
my breakdown script is as below:
current.vulnerability.sys_id;
how do I concatenate a letter 'a' to this?
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hi @venori26 ,
You add try adding a literal 'a' at end of value like
var id = current.getValue('vulnerability'); // sys_id as string
var val = id + "a"; //concatenating a
and use val as variable value in next lines wherever is it useful.
Thanks,
Bhimashankar H
-------------------------------------------------------------------------------------------------
If my response points you in the right directions, please consider marking it as 'Helpful' & 'Correct'. Thanks!