Skip to content
Advertisement

Need to separate particular String from array in javascript

I have a output like this

Output :

JavaScript

I need to convert like this

output : [xdc,cddc,cdcd,cddc]

Advertisement

Answer

You can use Array.prototype.map() combined with Destructuring assignment

Code:

JavaScript
Advertisement