How do get this result

from:
[

{

“url”: [

www.google.com”,

www.twitter.com

]

}

]

to:

www.google.com
wwww.twitter.com

What is the source node and what node do you want to use it in? You should be able to just select it from the expression builder if it isn’t being used in a function node.

Something I do:

var html = items[0].json.url+"";
html=html.replace(",","\n");
console.log(html);
return [
  {
    json: {
      url: html
    }
  }
]

Hey @aston_he,

Do you still need help?