How can i convert this text?
From this:
Also known as "test".
To this:
Also known as "test"
How can i convert this text?
From this:
Also known as "test".
To this:
Also known as "test"
You can use the replace function
'Also known as "test"'.replace(/"/g,'');
The g
flag is used with the regex to replace all the instances.